12345678910111213141516171819202122232425262728293031323334 |
- void the_task (int foo, float bar[foo])
- __attribute__ ((task));
- static void the_task_cpu (int foo, float bar[foo])
- __attribute__ ((task_implementation ("cpu", the_task)));
- extern void the_task_cuda (int foo, float bar[foo])
- __attribute__ ((task_implementation ("cuda", the_task)));
- static void
- the_task_cpu (int foo, float bar[foo])
- {
-
- }
|