PSCF v1.2
cuda/RFieldDft.h
1#ifndef PRDC_CUDA_R_FIELD_DFT_H
2#define PRDC_CUDA_R_FIELD_DFT_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 "types.h"
12#include <pscf/cuda/DeviceArray.h>
13#include <pscf/cuda/HostDArray.h>
14#include <pscf/math/IntVec.h>
15#include <util/global.h>
16
17namespace Pscf {
18namespace Prdc {
19namespace Cuda {
20
21 using namespace Util;
22
32 template <int D>
33 class RFieldDft : public DeviceArray<cudaComplex>
34 {
35
36 public:
37
42
51
59 RFieldDft(RFieldDft<D> const & other);
60
66 virtual ~RFieldDft();
67
79
92
101
111 void associate(DeviceArray<cudaComplex>& arr, int beginId,
112 IntVec<D> const & meshDimensions);
113
117 IntVec<D> const & meshDimensions() const;
118
127 IntVec<D> const & dftDimensions() const;
128
135 template <class Archive>
136 void serialize(Archive& ar, const unsigned int version);
137
138 private:
139
140 // Vector containing number of grid points in each direction.
141 IntVec<D> meshDimensions_;
142
143 // Vector containing dimensions of dft (Fourier) grid.
144 IntVec<D> dftDimensions_;
145
146 // Make private to prevent allocation without setting meshDimensions.
147 using DeviceArray<cudaComplex>::allocate;
148
149 // Make private to prevent association without setting meshDimensions.
150 using DeviceArray<cudaComplex>::associate;
151
152 // Make private to prevent assignment without setting meshDimensions.
153 using DeviceArray<cudaComplex>::operator =;
154
155 };
156
157 // Inline and templated member functions
158
159 /*
160 * Return mesh dimensions by constant reference.
161 */
162 template <int D>
163 inline const IntVec<D>& RFieldDft<D>::meshDimensions() const
164 { return meshDimensions_; }
165
166 /*
167 * Return dimensions of dft grid by constant reference.
168 */
169 template <int D>
170 inline const IntVec<D>& RFieldDft<D>::dftDimensions() const
171 { return dftDimensions_; }
172
173 /*
174 * Serialize a Field to/from an Archive.
175 */
176 template <int D>
177 template <class Archive>
178 void RFieldDft<D>::serialize(Archive& ar, const unsigned int version)
179 {
180 int capacity;
181 if (Archive::is_saving()) {
182 capacity = capacity_;
183 }
184 ar & capacity;
185 if (Archive::is_loading()) {
186 if (!isAllocated()) {
187 if (capacity > 0) {
188 allocate(capacity);
189 }
190 } else {
191 if (capacity != capacity_) {
192 UTIL_THROW("Inconsistent Field capacities");
193 }
194 }
195 }
196
197 if (isAllocated()) {
198 HostDArray<cudaComplex> tempData(capacity);
199 tempData = this; // copy this object's data from device to host
200 for (int i = 0; i < capacity_; ++i) {
201 ar & tempData[i].x;
202 ar & tempData[i].y;
203 }
204 }
205 ar & meshDimensions_;
206 }
207
208 #ifndef PRDC_CUDA_R_FIELD_DFT_TPP
209 extern template class RFieldDft<1>;
210 extern template class RFieldDft<2>;
211 extern template class RFieldDft<3>;
212 #endif
213
214}
215}
216}
217#endif
Dynamic array on the GPU device with aligned data.
Definition rpg/System.h:32
Template for dynamic array stored in host CPU memory.
Definition HostDArray.h:43
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Fourier transform of a real field on an FFT mesh.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array and set mesh dimensions.
RFieldDft< D > & operator=(RFieldDft< D > const &other)
Assignment operator.
RFieldDft()
Default constructor.
IntVec< D > const & meshDimensions() const
Return vector of spatial mesh dimensions by constant reference.
IntVec< D > const & dftDimensions() const
Return vector of dft (Fourier) grid dimensions by const reference.
IntVec< D > const & meshDimensions() const
Return vector of real-space mesh dimensions by constant reference.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for an FFT grid.
void serialize(Archive &ar, const unsigned int version)
Serialize a Field to/from an Archive.
virtual ~RFieldDft()
Destructor.
RFieldDft(RFieldDft< D > const &other)
Copy constructor.
void associate(DeviceArray< cudaComplex > &arr, int beginId, IntVec< D > const &meshDimensions)
Associate this object with a slice of another DeviceArray.
RFieldDft()
Default constructor.
File containing preprocessor macros for error handling.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.