1234567891011121314151617181920212223242526272829303132 |
- #include <starpu.h>
- extern struct starpu_codelet scal_codelet;
- extern struct starpu_opencl_program opencl_program;
- void scal_func_cpu(void *buffers[], void *cl_arg);
- #ifdef STARPU_USE_CUDA
- void scal_func_cuda(void *buffers[], void *cl_arg);
- #endif
- #ifdef STARPU_USE_OPENCL
- void scal_func_opencl(void *buffers[], void *_args);
- #endif
|