Browse Source

Make the test more ""challenging"" (test the case where only a subset of the
workers should execute a task).

Cédric Augonnet 15 years ago
parent
commit
dc04c50247
1 changed files with 4 additions and 0 deletions
  1. 4 0
      tests/helper/execute_on_all.c

+ 4 - 0
tests/helper/execute_on_all.c

@@ -34,6 +34,10 @@ int main(int argc, char **argv)
 
 	starpu_execute_on_each_worker(func, &arg, CORE|CUDA);
 
+	starpu_execute_on_each_worker(func, &arg, CORE);
+	
+	starpu_execute_on_each_worker(func, &arg, CUDA);
+
 	starpu_shutdown();
 
 	return 0;