Browse Source

examples/matvecmult/matvecmult.c: improve error message

Nathalie Furmento 14 years ago
parent
commit
a24f07b404
1 changed files with 1 additions and 1 deletions
  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);
 	}