PSCF v1.2
FFT.cu
1/*
2* PSCF Package
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "FFT.tpp"
9
10namespace Pscf {
11namespace Prdc {
12namespace Cuda {
13
14 using namespace Util;
15
16 // Forward real-to-complex transform, explicit specializations.
17 template<>
18 void FFT<1>::makePlans()
19 {
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);
25 #else
26 cufftPlan1d(&rcfPlan_, n0, CUFFT_D2Z, 1);
27 cufftPlan1d(&criPlan_, n0, CUFFT_Z2D, 1);
28 cufftPlan1d(&ccPlan_, n0, CUFFT_Z2Z, 1);
29 #endif
30 }
31
32 template <>
33 void FFT<2>::makePlans()
34 {
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);
41 #else
42 cufftPlan2d(&rcfPlan_, n0, n1, CUFFT_D2Z);
43 cufftPlan2d(&criPlan_, n0, n1, CUFFT_Z2D);
44 cufftPlan2d(&ccPlan_, n0, n1, CUFFT_Z2Z);
45 #endif
46 }
47
48 template <>
49 void FFT<3>::makePlans()
50 {
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);
58 #else
59 cufftPlan3d(&rcfPlan_, n0, n1, n2, CUFFT_D2Z);
60 cufftPlan3d(&criPlan_, n0, n1, n2, CUFFT_Z2D);
61 cufftPlan3d(&ccPlan_, n0, n1, n2, CUFFT_Z2Z);
62 #endif
63 }
64
65 // Explicit instantiation of relevant class instances
66 template class FFT<1>;
67 template class FFT<2>;
68 template class FFT<3>;
69
70}
71}
72}
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.