| 255 | } |
| 256 | |
| 257 | static void |
| 258 | nc_neg( npy_intp n,npy_complex64 *a, npy_intp sb1, npy_complex64 *r) |
| 259 | { |
| 260 | if( sb1 == sizeof(npy_complex64) ) { // Aligned |
| 261 | for( npy_intp I = 0; I < n; I++ ) { |
| 262 | _inline_neg( a[I], r[I] ); |
| 263 | } |
| 264 | } |
| 265 | else { |
| 266 | sb1 /= sizeof(npy_complex64); |
| 267 | for( npy_intp I = 0; I < n; I++ ) { |
| 268 | _inline_neg( a[I*sb1], r[I] ); |
| 269 | } |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | static void |
| 274 | nc_neg( npy_intp n,npy_complex128 *a, npy_intp sb1, npy_complex128 *r) |
nothing calls this directly
no test coverage detected
searching dependent graphs…