| 287 | } |
| 288 | |
| 289 | static void |
| 290 | nc_conj(npy_intp n,npy_complex64 *a, npy_intp sb1, npy_complex64 *r) |
| 291 | { |
| 292 | if( sb1 == sizeof(npy_complex64) ) { // Aligned |
| 293 | for( npy_intp I = 0; I < n; I++ ) { |
| 294 | r[I].real = a[I].real; |
| 295 | r[I].imag = -a[I].imag; |
| 296 | } |
| 297 | } |
| 298 | else { |
| 299 | sb1 /= sizeof(npy_complex64); |
| 300 | for( npy_intp I = 0; I < n; I++ ) { |
| 301 | r[I].real = a[I*sb1].real; |
| 302 | r[I].imag = -a[I*sb1].imag; |
| 303 | } |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | static void |
| 308 | nc_conj(npy_intp n,npy_complex128 *a, npy_intp sb1, npy_complex128 *r) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…