| 41 | #define MIN(a, b) (((a) < (b)) ? (a) : (b)) |
| 42 | #endif |
| 43 | void _set(const int N, const float alpha, float* Y) |
| 44 | { |
| 45 | for(int i = 0; i < N; ++i) |
| 46 | Y[i] = alpha; |
| 47 | } |
| 48 | |
| 49 | void _axpy(const int N, const float* X, float* Y) |
| 50 | { |
no outgoing calls
no test coverage detected