| 122 | |
| 123 | template<typename T> |
| 124 | void fft_inplace(af_array in, const double norm_factor, int rank, |
| 125 | bool direction) { |
| 126 | Array<T> &input = getArray<T>(in); |
| 127 | fft_inplace<T>(input, rank, direction); |
| 128 | if (norm_factor != 1) { multiply_inplace<T>(input, norm_factor); } |
| 129 | } |
| 130 | |
| 131 | af_err fft_inplace(af_array in, const double norm_factor, int rank, |
| 132 | bool direction) { |
no test coverage detected