PSCF v1.2
FFT.cpp
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#ifdef PSCF_OPENMP
10#include <omp.h>
11#endif
12
13namespace Pscf {
14namespace Prdc {
15namespace Cpu {
16
17 using namespace Util;
18
19 // Explicit class instantiations
20
21 template class FFT<1>;
22 template class FFT<2>;
23 template class FFT<3>;
24
25 // Planning functions, explicit specializations.
26
27 template<>
28 void FFT<1>::makePlans(RField<1>& rField, RFieldDft<1>& kField,
29 CField<1>& cFieldIn, CField<1>& cFieldOut)
30 {
31 #ifdef PSCF_OPENMP
32 int nThread = omp_get_max_threads();
33 if (nThread > 1) {
34 // std::cout << "Planning 1D FFT with " << nThread << " threads\n";
35 fftw_plan_with_nthreads(nThread);
36 }
37 #endif
38 int n0 = rSize_;
39 unsigned int flags = FFTW_ESTIMATE;
40 rcfPlan_ = fftw_plan_dft_r2c_1d(n0, &rField[0], &kField[0], flags);
41 criPlan_ = fftw_plan_dft_c2r_1d(n0, &kField[0], &rField[0], flags);
42 int sign = FFTW_FORWARD;
43 ccfPlan_ = fftw_plan_dft_1d(n0, &cFieldIn[0], &cFieldOut[0],
44 sign, flags);
45 sign = FFTW_BACKWARD;
46 cciPlan_ = fftw_plan_dft_1d(n0, &cFieldOut[0], &cFieldIn[0],
47 sign, flags);
48 }
49
50 template <>
51 void FFT<2>::makePlans(RField<2>& rField, RFieldDft<2>& kField,
52 CField<2>& cFieldIn, CField<2>& cFieldOut)
53 {
54 #ifdef PSCF_OPENMP
55 int nThread = omp_get_max_threads();
56 if (nThread > 1) {
57 // std::cout << "Planning 2D FFT with " << nThread << " threads\n";
58 fftw_plan_with_nthreads(nThread);
59 }
60 #endif
61 unsigned int flags = FFTW_ESTIMATE;
62 int n0 = meshDimensions_[0];
63 int n1 = meshDimensions_[1];
64 rcfPlan_ = fftw_plan_dft_r2c_2d(n0, n1, &rField[0], &kField[0], flags);
65 criPlan_ = fftw_plan_dft_c2r_2d(n0, n1, &kField[0], &rField[0], flags);
66 int sign = FFTW_FORWARD;
67 ccfPlan_ = fftw_plan_dft_2d(n0, n1, &cFieldIn[0], &cFieldOut[0],
68 sign, flags);
69 sign = FFTW_BACKWARD;
70 cciPlan_ = fftw_plan_dft_2d(n0, n1, &cFieldOut[0], &cFieldIn[0],
71 sign, flags);
72 }
73
74 template <>
75 void FFT<3>::makePlans(RField<3>& rField, RFieldDft<3>& kField,
76 CField<3>& cFieldIn, CField<3>& cFieldOut)
77 {
78 #ifdef PSCF_OPENMP
79 int nThread = omp_get_max_threads();
80 if (nThread > 1) {
81 // std::cout << "Planning 3D FFT with " << nThread << " threads\n";
82 fftw_plan_with_nthreads(nThread);
83 }
84 #endif
85 unsigned int flags = FFTW_ESTIMATE;
86 int n0 = meshDimensions_[0];
87 int n1 = meshDimensions_[1];
88 int n2 = meshDimensions_[2];
89 rcfPlan_ = fftw_plan_dft_r2c_3d(n0, n1, n2,
90 &rField[0], &kField[0], flags);
91 criPlan_ = fftw_plan_dft_c2r_3d(n0, n1, n2,
92 &kField[0], &rField[0], flags);
93 int sign = FFTW_FORWARD;
94 ccfPlan_ = fftw_plan_dft_3d(n0, n1, n2,
95 &cFieldIn[0], &cFieldOut[0], sign, flags);
96 sign = FFTW_BACKWARD;
97 cciPlan_ = fftw_plan_dft_3d(n0, n1, n2,
98 &cFieldIn[0], &cFieldOut[0], sign, flags);
99 }
100
101}
102}
103}
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.