1#ifndef PRDC_CUDA_C_FIELD_TPP
2#define PRDC_CUDA_C_FIELD_TPP
51 meshDimensions_ = other.meshDimensions_;
61 meshDimensions_ = other.meshDimensions_;
74 UTIL_THROW(
"Error: RHS HostDArray<cudaComplex> is not allocated.");
77 UTIL_THROW(
"Error: LHS CField<D> is not allocated.");
80 UTIL_THROW(
"Cannot assign Fields of unequal capacity");
96 for (
int i = 0; i < D; ++i) {
98 meshDimensions_[i] = meshDimensions[i];
99 size *= meshDimensions[i];
112 for (
int i = 0; i < D; ++i) {
114 meshDimensions_[i] = meshDimensions[i];
115 size *= meshDimensions[i];
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 complex double precision values on an FFT mesh.
const IntVec< D > & meshDimensions() const
Return mesh dimensions by constant reference.
void allocate(const IntVec< D > &meshDimensions)
Allocate the underlying C array for an FFT grid.
CField< D > & operator=(CField< D > const &other)
Assignment operator, assignment from another CField<D>.
void associate(DeviceArray< cudaComplex > &arr, int beginId, IntVec< D > const &meshDimensions)
Associate this object with a slice of another DeviceArray.
virtual ~CField()
Destructor.
CField()
Default constructor.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for data on a regular mesh.
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.