PSCF v1.2
cuda/FFT.h
1#ifndef PRDC_CUDA_FFT_H
2#define PRDC_CUDA_FFT_H
3
4/*
5* PSCF Package
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include "RField.h"
12#include "CField.h"
13#include "RFieldDft.h"
14#include "types.h"
15
16#include <pscf/math/IntVec.h>
17#include <util/global.h>
18
19#include <cufft.h>
20
21namespace Pscf {
22namespace Prdc {
23namespace Cuda {
24
25 using namespace Util;
26 using namespace Pscf;
27
33 template <int D>
34 class FFT
35 {
36
37 public:
38
42 FFT();
43
47 virtual ~FFT();
48
55
56 // Real <-> Complex transforms
57
73 void forwardTransform(RField<D> const & rField, RFieldDft<D>& kField)
74 const;
75
90 const;
91
101 void inverseTransformSafe(RFieldDft<D> const & kField,
102 RField<D>& rField) const;
103
104 // Complex <-> Complex transforms
105
125 void forwardTransform(CField<D> const & rField, CField<D>& kField)
126 const;
127
144 void inverseTransform(CField<D> const & kField, CField<D>& rField)
145 const;
146
150 const IntVec<D>& meshDimensions() const;
151
155 bool isSetup() const;
156
157 private:
158
160 IntVec<D> meshDimensions_;
161
163 mutable RFieldDft<D> kFieldCopy_;
164
166 int rSize_;
167
169 int kSize_;
170
172 cufftHandle rcfPlan_;
173
175 cufftHandle criPlan_;
176
178 cufftHandle ccPlan_;
179
181 bool isSetup_;
182
186 void makePlans();
187
188 };
189
190 // Declarations of explicit specializations
191
192 template <>
193 void FFT<1>::makePlans();
194
195 template <>
196 void FFT<2>::makePlans();
197
198 template <>
199 void FFT<3>::makePlans();
200
201 // Return the dimensions of the grid for which this was allocated.
202 template <int D>
203 inline IntVec<D> const & FFT<D>::meshDimensions() const
204 { return meshDimensions_; }
205
206 // Has this FFT object been setup?
207 template <int D>
208 inline bool FFT<D>::isSetup() const
209 { return isSetup_; }
210
211 #ifndef PRDC_CUDA_FFT_TPP
212 // Suppress implicit instantiation
213 extern template class FFT<1>;
214 extern template class FFT<2>;
215 extern template class FFT<3>;
216 #endif
217
218}
219}
220}
221#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Field of complex double precision values on an FFT mesh.
Definition cpu/CField.h:30
Fourier transform wrapper.
IntVec< D > const & meshDimensions() const
Return the dimensions of the grid for which this was setup.
Definition cpu/FFT.h:217
Fourier transform of a real field on an FFT mesh.
Field of real double precision values on an FFT mesh.
FFT()
Default constructor.
void inverseTransform(CField< D > const &kField, CField< D > &rField) const
Compute inverse (complex-to-complex) discrete Fourier transform.
virtual ~FFT()
Destructor.
bool isSetup() const
Has this FFT object been setup?
const IntVec< D > & meshDimensions() const
Return the dimensions of the grid for which this was allocated.
void forwardTransform(RField< D > const &rField, RFieldDft< D > &kField) const
Compute forward (real-to-complex) discrete Fourier transform.
void setup(IntVec< D > const &meshDimensions)
Setup grid dimensions, plans and work space.
void inverseTransformUnsafe(RFieldDft< D > &kField, RField< D > &rField) const
Compute inverse (complex-to-real) DFT, overwriting the input.
void inverseTransformSafe(RFieldDft< D > const &kField, RField< D > &rField) const
Compute inverse (complex-to-real) DFT without overwriting input.
void forwardTransform(CField< D > const &rField, CField< D > &kField) const
Compute forward (complex-to-complex) discrete Fourier transform.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.