MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / af_ifft

Function af_ifft

src/api/c/fft.cpp:103–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101}
102
103af_err af_ifft(af_array *out, const af_array in, const double norm_factor,
104 const dim_t pad0) {
105 const dim_t pad[1] = {pad0};
106 return fft(out, in, norm_factor, (pad0 > 0 ? 1 : 0), pad, 1, false);
107}
108
109af_err af_ifft2(af_array *out, const af_array in, const double norm_factor,
110 const dim_t pad0, const dim_t pad1) {

Callers 4

fftTestFunction · 0.50
fft.cppFile · 0.50
fftTestFunction · 0.50
ifftNormFunction · 0.50

Calls 1

fftFunction · 0.70

Tested by

no test coverage detected