123456789101112131415161718192021222324252627 |
- void my_task (int x, float a[x])
- __attribute__ ((task));
- static void my_task_opencl (int x, float a[x])
- __attribute__ ((task_implementation ("opencl", my_task)));
- #pragma starpu opencl my_task_opencl \
- "test.cl" "kern" 8
|