| 68 | TRANSFORM_REAL(fftw, double, cdouble, c2r) |
| 69 | |
| 70 | inline 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 | |
| 76 | void setFFTPlanCacheSize(size_t numPlans) { UNUSED(numPlans); } |
| 77 |
no outgoing calls
no test coverage detected