16#include <pscf/math/IntVec.h>
172 cufftHandle rcfPlan_;
175 cufftHandle criPlan_;
204 {
return meshDimensions_; }
211 #ifndef PRDC_CUDA_FFT_TPP
213 extern template class FFT<1>;
214 extern template class FFT<2>;
215 extern template class FFT<3>;
An IntVec<D, T> is a D-component vector of elements of integer type T.
Field of complex double precision values on an FFT mesh.
Fourier transform wrapper.
IntVec< D > const & meshDimensions() const
Return the dimensions of the grid for which this was setup.
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.
Utility classes for scientific computation.