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

Function af_fft3_r2c

src/api/c/fft.cpp:231–236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

229}
230
231af_err af_fft3_r2c(af_array *out, const af_array in, const double norm_factor,
232 const dim_t pad0, const dim_t pad1, const dim_t pad2) {
233 const dim_t pad[3] = {pad0, pad1, pad2};
234 return fft_r2c(out, in, norm_factor,
235 (pad0 > 0 && pad1 > 0 && pad2 > 0 ? 3 : 0), pad, 3);
236}
237
238template<typename InType>
239static af_array fft_c2r(const af_array in, const double norm_factor,

Callers 1

fftR2C<3>Function · 0.50

Calls 1

fft_r2cFunction · 0.70

Tested by

no test coverage detected