| 180 | |
| 181 | template<> |
| 182 | AFAPI array fftR2C<2>(const array& in, const dim4& dims, |
| 183 | const double norm_factor) { |
| 184 | af_array res; |
| 185 | AF_THROW(af_fft2_r2c(&res, in.get(), norm_factor == 0 ? 1.0 : norm_factor, |
| 186 | dims[0], dims[1])); |
| 187 | return array(res); |
| 188 | } |
| 189 | |
| 190 | template<> |
| 191 | AFAPI array fftR2C<3>(const array& in, const dim4& dims, |
no test coverage detected