| 143 | } |
| 144 | |
| 145 | void fft2InPlace(array& in, const double norm_factor) { |
| 146 | AF_THROW(af_fft2_inplace(in.get(), norm_factor)); |
| 147 | } |
| 148 | |
| 149 | void fft3InPlace(array& in, const double norm_factor) { |
| 150 | AF_THROW(af_fft3_inplace(in.get(), norm_factor)); |
no test coverage detected