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

Function af_ifft3

src/api/c/fft.cpp:116–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114}
115
116af_err af_ifft3(af_array *out, const af_array in, const double norm_factor,
117 const dim_t pad0, const dim_t pad1, const dim_t pad2) {
118 const dim_t pad[3] = {pad0, pad1, pad2};
119 return fft(out, in, norm_factor, (pad0 > 0 && pad1 > 0 && pad2 > 0 ? 3 : 0),
120 pad, 3, false);
121}
122
123template<typename T>
124void fft_inplace(af_array in, const double norm_factor, int rank,

Callers 5

TESTFunction · 0.50
fftTestFunction · 0.50
fft.cppFile · 0.50
fftTestFunction · 0.50
ifft3NormFunction · 0.50

Calls 1

fftFunction · 0.70

Tested by

no test coverage detected