| 67 | Y[i] += 1.f; |
| 68 | } |
| 69 | void _mul(const int N, const float* a, const float* b, float* y) |
| 70 | { |
| 71 | for(int i = 0; i < N; i++) |
| 72 | y[i] = a[i] * b[i]; |
| 73 | } |
| 74 | void _add(const int N, const float* a, const float* b, float* y) |
| 75 | { |
| 76 | for(int i = 0; i < N; i++) |