Browse Source

examples/coverage/coverage.sh: force the execution of the opencl kernels

Nathalie Furmento 15 years ago
parent
commit
07dbe216b5
1 changed files with 12 additions and 0 deletions
  1. 12 0
      examples/coverage/coverage.sh

+ 12 - 0
examples/coverage/coverage.sh

@@ -23,6 +23,18 @@ check_success()
 }
 apps()
 {
+    echo "block opencl"
+    STARPU_NCUDA=0 STARPU_NCPUS=0 basic_examples/block
+    check_success $?
+
+    echo "variable opencl"
+    STARPU_NCUDA=0 STARPU_NCPUS=0 ./basic_examples/variable 
+    check_success $?
+
+    echo "incrementer opencl"
+    STARPU_NCUDA=0 STARPU_NCPUS=0 ./incrementer/incrementer
+    check_success $?
+
     echo "tag_example"
     tag_example/tag_example -iter 64 -i 128 -j 24
     check_success $?