File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,10 @@ for mode in $("${OCCA_DIR}/bin/occa" modes); do
6767 # Filters
6868 case " ${example_dir} " in
6969
70+ cpp/02_for_loops)
71+ if [[ " ${mode} " == OpenCL ]]; then
72+ continue
73+ fi ;;
7074 cpp/03_arrays)
7175 if [[ " ${mode} " == OpenCL ]]; then
7276 continue
@@ -75,6 +79,10 @@ for mode in $("${OCCA_DIR}/bin/occa" modes); do
7579 if [[ " ${mode} " == OpenCL ]]; then
7680 continue
7781 fi ;;
82+ cpp/05_custom_types)
83+ if [[ " ${mode} " == OpenCL ]]; then
84+ continue
85+ fi ;;
7886 cpp/06_shared_memory)
7987 if [[ " ${mode} " == OpenCL ]]; then
8088 continue
@@ -103,6 +111,10 @@ for mode in $("${OCCA_DIR}/bin/occa" modes); do
103111 fi
104112 flags=(--verbose)
105113 ;;
114+ c/04_reduction)
115+ if [[ " ${mode} " == OpenCL ]]; then
116+ continue
117+ fi ;;
106118 fortran/09_streams)
107119 if [[ " ${mode} " != Serial ]]; then
108120 continue
You can’t perform that action at this time.
0 commit comments