| 157 | } |
| 158 | |
| 159 | void ifft2InPlace(array& in, const double norm_factor) { |
| 160 | const dim4 dims = in.dims(); |
| 161 | double norm = norm_factor * (1.0 / static_cast<double>(dims[0] * dims[1])); |
| 162 | AF_THROW(af_ifft2_inplace(in.get(), norm)); |
| 163 | } |
| 164 | |
| 165 | void ifft3InPlace(array& in, const double norm_factor) { |
| 166 | const dim4 dims = in.dims(); |
no test coverage detected