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

Function fft_c2r

src/api/c/fft.cpp:239–245  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

237
238template<typename InType>
239static af_array fft_c2r(const af_array in, const double norm_factor,
240 const dim4 &odims, const int rank) {
241 using OutType = typename conditional<is_same<InType, cdouble>::value,
242 double, float>::type;
243 return getHandle(fft_c2r<InType, OutType>(getArray<InType>(in), norm_factor,
244 odims, rank));
245}
246
247af_err fft_c2r(af_array *out, const af_array in, const double norm_factor,
248 const bool is_odd, const int rank) {

Callers 3

af_fft_c2rFunction · 0.70
af_fft2_c2rFunction · 0.70
af_fft3_c2rFunction · 0.70

Calls 6

swapFunction · 0.85
getHandleFunction · 0.70
af_retain_arrayFunction · 0.70
getTypeMethod · 0.45
dimsMethod · 0.45
ndimsMethod · 0.45

Tested by

no test coverage detected