PSCF v1.2
FFTBatched.h
1#ifndef PRDC_CUDA_FFT_BATCHED_H
2#define PRDC_CUDA_FFT_BATCHED_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 "RFieldDft.h"
13#include "types.h"
14#include <pscf/math/IntVec.h>
15#include <util/global.h>
16
17#include <cufft.h>
18
19namespace Pscf {
20namespace Prdc {
21namespace Cuda {
22
23 using namespace Util;
24
30 template <int D>
32 {
33
34 public:
35
39 FFTBatched();
40
44 virtual ~FFTBatched();
45
52 void setup(IntVec<D> const & meshDimensions, int batchSize);
53
72 void forwardTransform(DeviceArray<cudaReal> const & rFields,
73 DeviceArray<cudaComplex>& kFields) const;
74
89 DeviceArray<cudaReal>& rFields) const;
90
94 const IntVec<D>& meshDimensions() const;
95
101 void resetBatchSize(int batchSize);
102
106 bool isSetup() const;
107
108 private:
109
111 IntVec<D> meshDimensions_;
112
114 IntVec<D> kMeshDimensions_;
115
117 int batchSize_;
118
120 int rSize_;
121
123 int kSize_;
124
126 cufftHandle fPlan_;
127
129 cufftHandle iPlan_;
130
132 bool isSetup_;
133
139 void makePlans(int batchSize);
140
141 };
142
143 // Return the dimensions of the grid for which this was allocated.
144 template <int D>
146 { return meshDimensions_; }
147
148 // Has the setup method been called?
149 template <int D>
150 inline bool FFTBatched<D>::isSetup() const
151 { return isSetup_; }
152
153 #ifndef PRDC_CUDA_FFT_BATCHED_TPP
154 // Suppress implicit instantiation
155 extern template class FFTBatched<1>;
156 extern template class FFTBatched<2>;
157 extern template class FFTBatched<3>;
158 #endif
159
160}
161}
162}
163
164#endif
Dynamic array on the GPU device with aligned data.
Definition rpg/System.h:32
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Batched Fourier transform wrapper for real data.
Definition FFTBatched.h:32
virtual ~FFTBatched()
Destructor.
void forwardTransform(DeviceArray< cudaReal > const &rFields, DeviceArray< cudaComplex > &kFields) const
Compute batched forward (real-to-complex) DFTs.
const IntVec< D > & meshDimensions() const
Return the dimensions of the grid for which this was allocated.
Definition FFTBatched.h:145
void inverseTransformUnsafe(DeviceArray< cudaComplex > &kFields, DeviceArray< cudaReal > &rFields) const
Compute inverse (complex-to-real) Fourier transform.
void setup(IntVec< D > const &meshDimensions, int batchSize)
Set up FFT calculation (get grid dimensions and make FFT plan)
FFTBatched()
Default constructor.
bool isSetup() const
Has the setup method been called?
Definition FFTBatched.h:150
void resetBatchSize(int batchSize)
Set the batch size to a new value.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.