| 24 | namespace ipl { |
| 25 | |
| 26 | void ArrayMath::add(int size, |
| 27 | const float* in1, |
| 28 | const float* in2, |
| 29 | float* out) |
| 30 | { |
| 31 | ippsAdd_32f(in1, in2, out, size); |
| 32 | } |
| 33 | |
| 34 | void ArrayMath::add(int size, |
| 35 | const complex_t* in1, |
nothing calls this directly
no outgoing calls
no test coverage detected