| 65 | } |
| 66 | |
| 67 | void verifySupported(const int rank, const dim4 &dims) { |
| 68 | for (int i = 0; i < rank; i++) { ARG_ASSERT(1, isSupLen(dims[i])); } |
| 69 | } |
| 70 | |
| 71 | template<typename T> |
| 72 | void fft_inplace(Array<T> &in, const int rank, const bool direction) { |
no test coverage detected