1#ifndef PRDC_CUDA_C_FIELD_H
2#define PRDC_CUDA_C_FIELD_H
12#include <pscf/cuda/DeviceArray.h>
13#include <pscf/cuda/HostDArray.h>
14#include <pscf/math/IntVec.h>
125 template <
class Archive>
126 void serialize(Archive& ar,
const unsigned int version);
149 {
return meshDimensions_; }
155 template <
class Archive>
159 if (Archive::is_saving()) {
160 capacity = capacity_;
163 if (Archive::is_loading()) {
164 if (!isAllocated()) {
169 if (capacity != capacity_) {
178 for (
int i = 0; i < capacity_; ++i) {
183 ar & meshDimensions_;
186 #ifndef PRDC_CUDA_C_FIELD_TPP
187 extern template class CField<1>;
188 extern template class CField<2>;
189 extern template class CField<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 complex double precision values on an FFT mesh.
const IntVec< D > & meshDimensions() const
Return mesh dimensions by constant reference.
CField()
Default constructor.
void allocate(const IntVec< D > &meshDimensions)
Allocate the underlying C array for an FFT grid.
CField & operator=(const CField &other)
Assignment operator.
CField(CField const &other)
Copy constructor.
void associate(DeviceArray< cudaComplex > &arr, int beginId, IntVec< D > const &meshDimensions)
Associate this object with a slice of another DeviceArray.
IntVec< D > const & meshDimensions() const
Return mesh dimensions by constant reference.
virtual ~CField()
Destructor.
void serialize(Archive &ar, const unsigned int version)
Serialize a Field to/from an Archive.
CField()
Default constructor.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for data on a regular mesh.
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.