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

Function computeDims

src/backend/cpu/fft.cpp:70–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68TRANSFORM_REAL(fftw, double, cdouble, c2r)
69
70inline array<int, AF_MAX_DIMS> computeDims(const int rank, const dim4 &idims) {
71 array<int, AF_MAX_DIMS> retVal = {};
72 for (int i = 0; i < rank; i++) { retVal[i] = idims[(rank - 1) - i]; }
73 return retVal;
74}
75
76void setFFTPlanCacheSize(size_t numPlans) { UNUSED(numPlans); }
77

Callers 3

fft_inplaceFunction · 0.70
fft_r2cFunction · 0.70
fft_c2rFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected