瀏覽代碼

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|CUDA);
 
 
+	starpu_execute_on_each_worker(func, &arg, CORE);
+	
+	starpu_execute_on_each_worker(func, &arg, CUDA);
+
 	starpu_shutdown();
 	starpu_shutdown();
 
 
 	return 0;
 	return 0;