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