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

Function af_fft

src/api/c/fft.cpp:83–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81}
82
83af_err af_fft(af_array *out, const af_array in, const double norm_factor,
84 const dim_t pad0) {
85 const dim_t pad[1] = {pad0};
86 return fft(out, in, norm_factor, (pad0 > 0 ? 1 : 0), pad, 1, true);
87}
88
89af_err af_fft2(af_array *out, const af_array in, const double norm_factor,
90 const dim_t pad0, const dim_t pad1) {

Callers 5

TESTFunction · 0.50
fftTestFunction · 0.50
fft.cppFile · 0.50
fftTestFunction · 0.50
fftNormFunction · 0.50

Calls 1

fftFunction · 0.70

Tested by

no test coverage detected