1#ifndef PRDC_CUDA_R_FIELD_H
2#define PRDC_CUDA_R_FIELD_H
12#include <pscf/cuda/DeviceArray.h>
13#include <pscf/cuda/HostDArray.h>
14#include <pscf/math/IntVec.h>
31 class RField :
public DeviceArray<cudaReal>
126 template <
class Archive>
127 void serialize(Archive& ar,
const unsigned int version);
150 {
return meshDimensions_; }
156 template <
class Archive>
160 if (Archive::is_saving()) {
161 capacity = capacity_;
164 if (Archive::is_loading()) {
165 if (!isAllocated()) {
170 if (capacity != capacity_) {
177 HostDArray<cudaReal> tempData(capacity);
179 for (
int i = 0; i < capacity_; ++i) {
183 ar & meshDimensions_;
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>;
Dynamic array on the GPU device with aligned data.
Template for dynamic array stored in host CPU memory.
An IntVec<D, T> is a D-component vector of elements of integer type T.
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.
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.
PSCF package top-level namespace.
Utility classes for scientific computation.