소스 검색

examples/matvecmult/matvecmult.c: improve error message

Nathalie Furmento 15 년 전
부모
커밋
a24f07b404
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/matvecmult/matvecmult.c

+ 1 - 1
examples/matvecmult/matvecmult.c

@@ -175,7 +175,7 @@ int main(int argc, char **argv)
 
         int ret = starpu_task_submit(task);
         if (STARPU_UNLIKELY(ret == -ENODEV)) {
-                fprintf(stderr, "No worker may execute this task\n");
+                fprintf(stderr, "No worker may execute this task. This application requires an OpenCL worker.\n");
                 exit(0);
 	}