123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #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 }
- };
|