123456789101112131415161718192021222324252627282930 |
- #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;
|