diff --git a/src/fourier/fft/fftw_calls.hpp b/src/fourier/fft/fftw_calls.hpp index b5f37db..f61f94b 100644 --- a/src/fourier/fft/fftw_calls.hpp +++ b/src/fourier/fft/fftw_calls.hpp @@ -90,6 +90,13 @@ public: \ { \ 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, \ complex_type *out, unsigned flags) \ { \