Added missing FFTW call

This commit is contained in:
Guilhem Lavaux 2015-02-11 18:23:28 +01:00
parent 8af3dc4359
commit 1dbe46a358

View File

@ -90,6 +90,13 @@ public: \
{ \ { \
return prefix ## _plan_dft_r2c_3d(Nx, Ny, Nz, in, out, flags); \ return prefix ## _plan_dft_r2c_3d(Nx, Ny, Nz, in, out, flags); \
} \ } \
static plan_type plan_dft_c2r_3d(int Nx, int Ny, int Nz, \
complex_type *in, real_type *out, \
unsigned flags) \
{ \
return prefix ## _plan_dft_c2r_3d(Nx, Ny, Nz, in, out, flags); \
} \
\
static plan_type plan_dft_r2c(int rank, const int *n, real_type *in, \ static plan_type plan_dft_r2c(int rank, const int *n, real_type *in, \
complex_type *out, unsigned flags) \ complex_type *out, unsigned flags) \
{ \ { \