Преглед изворни кода

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

Cédric Augonnet пре 15 година
родитељ
комит
dc04c50247
1 измењених фајлова са 4 додато и 0 уклоњено
  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;