18 void FFT<1>::makePlans()
20 int n0 = meshDimensions_[0];
21 #ifdef SINGLE_PRECISION
22 cufftPlan1d(&rcfPlan_, n0, CUFFT_R2C, 1);
23 cufftPlan1d(&criPlan_, n0, CUFFT_C2R, 1);
24 cufftPlan1d(&ccPlan_, n0, CUFFT_C2C, 1);
26 cufftPlan1d(&rcfPlan_, n0, CUFFT_D2Z, 1);
27 cufftPlan1d(&criPlan_, n0, CUFFT_Z2D, 1);
28 cufftPlan1d(&ccPlan_, n0, CUFFT_Z2Z, 1);
33 void FFT<2>::makePlans()
35 int n0 = meshDimensions_[0];
36 int n1 = meshDimensions_[1];
37 #ifdef SINGLE_PRECISION
38 cufftPlan2d(&rcfPlan_, n0, n1, CUFFT_R2C);
39 cufftPlan2d(&criPlan_, n0, n1, CUFFT_C2R);
40 cufftPlan2d(&ccPlan_, n0, n1, CUFFT_C2C);
42 cufftPlan2d(&rcfPlan_, n0, n1, CUFFT_D2Z);
43 cufftPlan2d(&criPlan_, n0, n1, CUFFT_Z2D);
44 cufftPlan2d(&ccPlan_, n0, n1, CUFFT_Z2Z);
49 void FFT<3>::makePlans()
51 int n0 = meshDimensions_[0];
52 int n1 = meshDimensions_[1];
53 int n2 = meshDimensions_[2];
54 #ifdef SINGLE_PRECISION
55 cufftPlan3d(&rcfPlan_, n0, n1, n2, CUFFT_R2C);
56 cufftPlan3d(&criPlan_, n0, n1, n2, CUFFT_C2R);
57 cufftPlan3d(&ccPlan_, n0, n1, n2, CUFFT_C2C);
59 cufftPlan3d(&rcfPlan_, n0, n1, n2, CUFFT_D2Z);
60 cufftPlan3d(&criPlan_, n0, n1, n2, CUFFT_Z2D);
61 cufftPlan3d(&ccPlan_, n0, n1, n2, CUFFT_Z2Z);
66 template class FFT<1>;
67 template class FFT<2>;
68 template class FFT<3>;
PSCF package top-level namespace.
Utility classes for scientific computation.