| 154 | } |
| 155 | |
| 156 | af_err af_fft_inplace(af_array in, const double norm_factor) { |
| 157 | return fft_inplace(in, norm_factor, 1, true); |
| 158 | } |
| 159 | |
| 160 | af_err af_fft2_inplace(af_array in, const double norm_factor) { |
| 161 | return fft_inplace(in, norm_factor, 2, true); |
no test coverage detected