1#ifndef PRDC_CUDA_R_FIELD_DFT_TPP
2#define PRDC_CUDA_R_FIELD_DFT_TPP
24 : DeviceArray<cudaComplex>()
49 meshDimensions_ = other.meshDimensions_;
50 dftDimensions_ = other.dftDimensions_;
61 meshDimensions_ = other.meshDimensions_;
62 dftDimensions_ = other.dftDimensions_;
76 UTIL_THROW(
"Error: RHS HostDArray<cudaComplex> is not allocated.");
79 UTIL_THROW(
"Error: LHS RFieldDft<D> is not allocated.");
82 UTIL_THROW(
"Cannot assign Fields of unequal capacity");
98 for (
int i = 0; i < D; ++i) {
100 meshDimensions_[i] = meshDimensions[i];
102 dftDimensions_[i] = meshDimensions[i];
103 size *= meshDimensions[i];
105 dftDimensions_[i] = (meshDimensions[i]/2 + 1);
106 size *= (meshDimensions[i]/2 + 1);
121 for (
int i = 0; i < D; ++i) {
123 meshDimensions_[i] = meshDimensions[i];
125 dftDimensions_[i] = meshDimensions[i];
126 size *= meshDimensions[i];
128 dftDimensions_[i] = (meshDimensions[i]/2 + 1);
129 size *= (meshDimensions[i]/2 + 1);
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.
Fourier transform of a real field on an FFT mesh.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array and set mesh dimensions.
IntVec< D > const & meshDimensions() const
Return vector of spatial mesh dimensions by constant reference.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for an FFT grid.
virtual ~RFieldDft()
Destructor.
void associate(DeviceArray< cudaComplex > &arr, int beginId, IntVec< D > const &meshDimensions)
Associate this object with a slice of another DeviceArray.
RFieldDft< D > & operator=(RFieldDft< D > const &other)
Assignment operator, assignment from another RFieldDft<D>.
RFieldDft()
Default constructor.
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.