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

Function af_fft2

src/api/c/fft.cpp:89–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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) {
91 const dim_t pad[2] = {pad0, pad1};
92 return fft(out, in, norm_factor, (pad0 > 0 && pad1 > 0 ? 2 : 0), pad, 2,
93 true);
94}
95
96af_err af_fft3(af_array *out, const af_array in, const double norm_factor,
97 const dim_t pad0, const dim_t pad1, const dim_t pad2) {

Callers 5

TESTFunction · 0.50
fftTestFunction · 0.50
fft.cppFile · 0.50
fftTestFunction · 0.50
fft2NormFunction · 0.50

Calls 1

fftFunction · 0.70

Tested by

no test coverage detected