PSCF v1.2
cuda/CField.h
1#ifndef PRDC_CUDA_C_FIELD_H
2#define PRDC_CUDA_C_FIELD_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 using namespace Pscf;
23
29 template <int D>
30 class CField : public DeviceArray<cudaComplex>
31 {
32
33 public:
34
39
48
56 CField(CField const & other);
57
63 virtual ~CField();
64
79
92
101
111 void associate(DeviceArray<cudaComplex>& arr, int beginId,
112 IntVec<D> const & meshDimensions);
113
117 IntVec<D> const & meshDimensions() const;
118
125 template <class Archive>
126 void serialize(Archive& ar, const unsigned int version);
127
128 private:
129
130 // Vector containing number of grid points in each dimension.
131 IntVec<D> meshDimensions_;
132
133 // Make private to prevent allocation without mesh dimensions.
134 using DeviceArray<cudaComplex>::allocate;
135
136 // Make private to prevent association without mesh dimensions.
137 using DeviceArray<cudaComplex>::associate;
138
139 // Make private to prevent assignment without mesh dimensions.
140 using DeviceArray<cudaComplex>::operator=;
141
142 };
143
144 /*
145 * Return mesh dimensions by constant reference.
146 */
147 template <int D>
148 inline const IntVec<D>& CField<D>::meshDimensions() const
149 { return meshDimensions_; }
150
151 /*
152 * Serialize a Field to/from an Archive.
153 */
154 template <int D>
155 template <class Archive>
156 void CField<D>::serialize(Archive& ar, const unsigned int version)
157 {
158 int capacity;
159 if (Archive::is_saving()) {
160 capacity = capacity_;
161 }
162 ar & capacity;
163 if (Archive::is_loading()) {
164 if (!isAllocated()) {
165 if (capacity > 0) {
166 allocate(capacity);
167 }
168 } else {
169 if (capacity != capacity_) {
170 UTIL_THROW("Inconsistent Field capacities");
171 }
172 }
173 }
174
175 if (isAllocated()) {
176 HostDArray<cudaComplex> tempData(capacity);
177 tempData = this; // copy this object's data from device to host
178 for (int i = 0; i < capacity_; ++i) {
179 ar & tempData[i].x;
180 ar & tempData[i].y;
181 }
182 }
183 ar & meshDimensions_;
184 }
185
186 #ifndef PRDC_CUDA_C_FIELD_TPP
187 extern template class CField<1>;
188 extern template class CField<2>;
189 extern template class CField<3>;
190 #endif
191
192}
193}
194}
195#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
Field of complex double precision values on an FFT mesh.
Definition cpu/CField.h:30
const IntVec< D > & meshDimensions() const
Return mesh dimensions by constant reference.
Definition cpu/CField.h:127
CField()
Default constructor.
void allocate(const IntVec< D > &meshDimensions)
Allocate the underlying C array for an FFT grid.
CField & operator=(const CField &other)
Assignment operator.
CField(CField const &other)
Copy constructor.
void associate(DeviceArray< cudaComplex > &arr, int beginId, IntVec< D > const &meshDimensions)
Associate this object with a slice of another DeviceArray.
IntVec< D > const & meshDimensions() const
Return mesh dimensions by constant reference.
virtual ~CField()
Destructor.
void serialize(Archive &ar, const unsigned int version)
Serialize a Field to/from an Archive.
CField()
Default constructor.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for data on a regular mesh.
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.