1#ifndef PRDC_CUDA_R_FIELD_TPP
2#define PRDC_CUDA_R_FIELD_TPP
43 { meshDimensions_ = other.meshDimensions_; }
59 for (
int i = 0; i < D; ++i) {
61 meshDimensions_[i] = meshDimensions[i];
62 size *= meshDimensions[i];
75 for (
int i = 0; i < D; ++i) {
77 meshDimensions_[i] = meshDimensions[i];
78 size *= meshDimensions[i];
90 meshDimensions_ = other.meshDimensions_;
103 UTIL_THROW(
"Error: RHS HostDArray<cudaReal> is not allocated.");
105 if (!isAllocated()) {
106 UTIL_THROW(
"Error: LHS RField<D> is not allocated.");
108 if (capacity_ != other.
capacity()) {
109 UTIL_THROW(
"Cannot assign Fields of unequal capacity");
Dynamic array on the GPU device with aligned data.
virtual DeviceArray< Data > & operator=(const DeviceArray< Data > &other)
Assignment operator, assign from another DeviceArray<Data> array.
void associate(DeviceArray< Data > &arr, int beginId, int capacity)
Associate this object with a slice of a different DeviceArray.
void allocate(int capacity)
Allocate the underlying C array on the device.
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.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for an FFT grid.
const IntVec< D > & 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 allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for data on a regular mesh.
RField< D > & operator=(const RField< D > &other)
Assignment operator, assignment from another RField<D>.
int capacity() const
Return allocated size.
bool isAllocated() const
Return true if this DArray has been allocated, false otherwise.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
#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.