| 166 | } |
| 167 | |
| 168 | af_err af_ifft_inplace(af_array in, const double norm_factor) { |
| 169 | return fft_inplace(in, norm_factor, 1, false); |
| 170 | } |
| 171 | |
| 172 | af_err af_ifft2_inplace(af_array in, const double norm_factor) { |
| 173 | return fft_inplace(in, norm_factor, 2, false); |
no test coverage detected