1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #include <stdio.h>
- #include <sdtdlib.h>
- #include "lol.h"
- struct starpu_codelet cl1 =
- {
- .where = STARPU_CPU,
- .cpu_func = foo
- };
- struct starpu_codelet cl2 =
- {
- .cpu_funcs = {foo}
- };
- struct starpu_codelet cl3 =
- {
- .cpu_func = foo,
- .cpu_funcs = { foo }
- };
- struct starpu_codelet cl4 =
- {
- .cpu_func = STARPU_MULTIPLE_CPU_IMPLEMENTATIONS,
- .cpu_funcs = { foo, bar }
- };
- struct starpu_codelet cl5 =
- {
- .cpu_func = STARPU_MULTIPLE_CPU_IMPLEMENTATIONS,
- .cpu_funcs = { foo, bar }
- };
|