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

Function fft_r2c

src/api/c/fft.cpp:181–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

179
180template<typename InType>
181af_array fft_r2c(const af_array in, const double norm_factor, const dim_t npad,
182 const dim_t *const pad, const int rank) {
183 using OutType = typename conditional<is_same<InType, double>::value,
184 cdouble, cfloat>::type;
185 return getHandle(fft_r2c<InType, OutType>(getArray<InType>(in), norm_factor,
186 npad, pad, rank));
187}
188
189af_err fft_r2c(af_array *out, const af_array in, const double norm_factor,
190 const dim_t npad, const dim_t *const pad, const int rank) {

Callers 3

af_fft_r2cFunction · 0.70
af_fft2_r2cFunction · 0.70
af_fft3_r2cFunction · 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