| 751 | } |
| 752 | |
| 753 | static void |
| 754 | nc_exp( npy_intp n, npy_complex64 *x, npy_intp sb1, npy_complex64 *r) |
| 755 | { |
| 756 | if( sb1 == sizeof(npy_complex64) ) { // Aligned |
| 757 | for( npy_intp I = 0; I < n; I++ ) { |
| 758 | _inline_exp( x[I], r[I] ); |
| 759 | } |
| 760 | } |
| 761 | else { |
| 762 | sb1 /= sizeof(npy_complex64); |
| 763 | for( npy_intp I = 0; I < n; I++ ) { |
| 764 | _inline_exp( x[I*sb1], r[I] ); |
| 765 | } |
| 766 | } |
| 767 | } |
| 768 | |
| 769 | |
| 770 | static void |
nothing calls this directly
no test coverage detected
searching dependent graphs…