1#ifndef PRDC_CUDA_R_FIELD_DFT_H
2#define PRDC_CUDA_R_FIELD_DFT_H
12#include <pscf/cuda/DeviceArray.h>
13#include <pscf/cuda/HostDArray.h>
14#include <pscf/math/IntVec.h>
135 template <
class Archive>
136 void serialize(Archive& ar,
const unsigned int version);
164 {
return meshDimensions_; }
171 {
return dftDimensions_; }
177 template <
class Archive>
181 if (Archive::is_saving()) {
182 capacity = capacity_;
185 if (Archive::is_loading()) {
186 if (!isAllocated()) {
191 if (capacity != capacity_) {
198 HostDArray<cudaComplex> tempData(capacity);
200 for (
int i = 0; i < capacity_; ++i) {
205 ar & meshDimensions_;
208 #ifndef PRDC_CUDA_R_FIELD_DFT_TPP
209 extern template class RFieldDft<1>;
210 extern template class RFieldDft<2>;
211 extern template class RFieldDft<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.
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.
RFieldDft< D > & operator=(RFieldDft< D > const &other)
Assignment operator.
RFieldDft()
Default constructor.
IntVec< D > const & meshDimensions() const
Return vector of spatial mesh dimensions by constant reference.
IntVec< D > const & dftDimensions() const
Return vector of dft (Fourier) grid dimensions by const reference.
IntVec< D > const & meshDimensions() const
Return vector of real-space mesh dimensions by constant reference.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for an FFT grid.
void serialize(Archive &ar, const unsigned int version)
Serialize a Field to/from an Archive.
virtual ~RFieldDft()
Destructor.
RFieldDft(RFieldDft< D > const &other)
Copy constructor.
void associate(DeviceArray< cudaComplex > &arr, int beginId, IntVec< D > const &meshDimensions)
Associate this object with a slice of another DeviceArray.
RFieldDft()
Default 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.