1234567891011121314151617181920212223242526272829 |
- #ifdef STARPU_GCC_PLUGIN
- # define __task __attribute__ ((task))
- #else
- # define __task
- #endif
- static void matmul (const float *A, const float *B, float *C, unsigned nx, unsigned ny, unsigned nz) __task;
|