소스 검색

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

Cédric Augonnet 16 년 전
부모
커밋
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;