| 47 | } |
| 48 | |
| 49 | void _axpy(const int N, const float* X, float* Y) |
| 50 | { |
| 51 | for(int i = 0; i < N; i++) |
| 52 | Y[i] += X[i]; |
| 53 | } |
| 54 | void _axpy_(const int N, const float* X, float* Y) |
| 55 | { |
| 56 | for(int i = 0; i < N; i++) |
no outgoing calls
no test coverage detected