| 151 | } |
| 152 | |
| 153 | void ifftInPlace(array& in, const double norm_factor) { |
| 154 | const dim4 dims = in.dims(); |
| 155 | double norm = norm_factor * (1.0 / static_cast<double>(dims[0])); |
| 156 | AF_THROW(af_ifft_inplace(in.get(), norm)); |
| 157 | } |
| 158 | |
| 159 | void ifft2InPlace(array& in, const double norm_factor) { |
| 160 | const dim4 dims = in.dims(); |
no test coverage detected