| 170 | } |
| 171 | |
| 172 | af_err af_ifft2_inplace(af_array in, const double norm_factor) { |
| 173 | return fft_inplace(in, norm_factor, 2, false); |
| 174 | } |
| 175 | |
| 176 | af_err af_ifft3_inplace(af_array in, const double norm_factor) { |
| 177 | return fft_inplace(in, norm_factor, 3, false); |
no test coverage detected