MCPcopy Create free account
hub / github.com/pydata/numexpr / nc_exp

Function nc_exp

numexpr3/complex_functions.hpp:753–767  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

751}
752
753static void
754nc_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
770static void

Callers

nothing calls this directly

Calls 1

_inline_expFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…