PSCF v1.2
|
Discrete Fourier Transform (DFT) of a real field, allocated on a GPU. More...
#include <RFieldDft.h>
Public Member Functions | |
RFieldDft () | |
Default constructor. | |
RFieldDft (IntVec< D > const &meshDimensions) | |
Allocating constructor. | |
RFieldDft (RFieldDft< D > const &other) | |
Copy constructor. | |
virtual | ~RFieldDft () |
Destructor. | |
RFieldDft< D > & | operator= (RFieldDft< D > const &other) |
Assignment operator, assignment from another RFieldDft<D>. | |
RFieldDft< D > & | operator= (HostDArray< cudaComplex > const &other) |
Assignment operator, assignment from a HostDArray<cudaComplex>. | |
void | allocate (IntVec< D > const &meshDimensions) |
Allocate the underlying C array for an FFT grid. | |
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 vector of real-space mesh dimensions by constant reference. | |
IntVec< D > const & | dftDimensions () const |
Return vector of dft (Fourier) grid dimensions by const reference. | |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Serialize a Field to/from an Archive. | |
![]() | |
DeviceArray () | |
Default constructor. | |
DeviceArray (int capacity) | |
Allocating constructor. | |
DeviceArray (DeviceArray< cudaComplex > const &other) | |
Copy constructor. | |
virtual | ~DeviceArray () |
Destructor. | |
void | allocate (int capacity) |
Allocate the underlying C array on the device. | |
void | associate (DeviceArray< cudaComplex > &arr, int beginId, int capacity) |
Associate this object with a slice of a different DeviceArray. | |
void | deallocate () |
Dellocate the underlying C array. | |
void | dissociate () |
Dissociate this object from the associated array. | |
virtual DeviceArray< cudaComplex > & | operator= (const DeviceArray< cudaComplex > &other) |
Assignment operator, assign from another DeviceArray<Data> array. | |
virtual DeviceArray< cudaComplex > & | operator= (const HostDArray< cudaComplex > &other) |
Assignment operator, assignment from HostDArray<Data> host array. | |
int | capacity () const |
Return allocated capacity. | |
bool | isAllocated () const |
Return true if the array has been allocated, false otherwise. | |
bool | isOwner () const |
Does this object own the underlying data? | |
cudaComplex * | cArray () |
Return pointer to underlying C array. | |
cudaComplex const * | cArray () const |
Return const pointer to underlying C array. | |
Additional Inherited Members | |
![]() | |
typedef cudaComplex | ElementType |
Data type of each element. | |
![]() | |
cudaComplex * | dataPtr_ |
Pointer to a C array of Data elements on the GPU device. | |
int | capacity_ |
Allocated size (capacity) of the array. | |
DeviceArray< cudaComplex > const * | ownerPtr_ |
Pointer to array that owns this data, if isOwner_ == false. | |
int | ownerCapacity_ |
Capacity of parent array, if isOwner_ == false. | |
cudaComplex const * | ownerDataPtr_ |
Const pointer to parent array, if isOwner_ == false. | |
Discrete Fourier Transform (DFT) of a real field, allocated on a GPU.
The DFT is stored internally as a C array of cudaComplex elements located in global GPU memory. All member functions are C++ functions that can be called from the host CPU.
Definition at line 33 of file cuda/RFieldDft.h.
Pscf::Prdc::Cuda::RFieldDft< D >::RFieldDft | ( | ) |
Default constructor.
Pscf::Prdc::Cuda::RFieldDft< D >::RFieldDft | ( | IntVec< D > const & | meshDimensions | ) |
Allocating constructor.
Calls allocate(meshDimensions) internally.
meshDimensions | dimensions of asssociated r-grid mesh |
Definition at line 31 of file cuda/RFieldDft.tpp.
References Pscf::Prdc::Cpu::RFieldDft< D >::allocate(), and Pscf::Prdc::Cpu::RFieldDft< D >::meshDimensions().
Pscf::Prdc::Cuda::RFieldDft< D >::RFieldDft | ( | RFieldDft< D > const & | other | ) |
Copy constructor.
Allocates new memory and copies all elements by value.
other | the RFieldDft to be copied. |
|
virtual |
Destructor.
Deletes underlying C array, if allocated previously.
RFieldDft< D > & Pscf::Prdc::Cuda::RFieldDft< D >::operator= | ( | RFieldDft< D > const & | other | ) |
Assignment operator, assignment from another RFieldDft<D>.
If this Field is not allocated, allocates and copies all elements.
If this and the other Field are both allocated, the capacities must be exactly equal. If so, this method copies all elements.
other | the RHS Field |
RFieldDft< D > & Pscf::Prdc::Cuda::RFieldDft< D >::operator= | ( | HostDArray< cudaComplex > const & | other | ) |
Assignment operator, assignment from a HostDArray<cudaComplex>.
Performs a deep copy, by copying all elements of the RHS RFieldDft<D> from host memory to device memory.
The RHS HostDArray<cudaComplex> and LHS RFieldDft<D> must both be allocated and have equal capacity values on entry.
other | the RHS HostDArray<cudaComplex> |
Definition at line 72 of file cuda/RFieldDft.tpp.
References Util::Array< Data >::capacity(), Util::DArray< T >::isAllocated(), Pscf::DeviceArray< Data >::operator=(), and UTIL_THROW.
void Pscf::Prdc::Cuda::RFieldDft< D >::allocate | ( | IntVec< D > const & | meshDimensions | ) |
Allocate the underlying C array for an FFT grid.
Exception | if the RFieldDft is already allocated. |
meshDimensions | number of grid points in each dimension |
References Pscf::Prdc::Cuda::RFieldDft< D >::associate().
void Pscf::Prdc::Cuda::RFieldDft< D >::associate | ( | DeviceArray< cudaComplex > & | arr, |
int | beginId, | ||
IntVec< D > const & | meshDimensions ) |
Associate this object with a slice of another DeviceArray.
Exception | if the array is already allocated. |
arr | parent array that owns the data |
beginId | index in the parent array at which this array starts |
meshDimensions | number of grid points in each dimension |
Definition at line 117 of file cuda/RFieldDft.tpp.
References Pscf::DeviceArray< Data >::associate(), and UTIL_CHECK.
Referenced by Pscf::Prdc::Cuda::RFieldDft< D >::allocate().
IntVec< D > const & Pscf::Prdc::Cuda::RFieldDft< D >::meshDimensions | ( | ) | const |
Return vector of real-space mesh dimensions by constant reference.
IntVec< D > const & Pscf::Prdc::Cuda::RFieldDft< D >::dftDimensions | ( | ) | const |
Return vector of dft (Fourier) grid dimensions by const reference.
The last element of dftDimensions() and meshDimensions() differ by about a factor of two: dftDimensions()[D-1] = meshDimensions()/2 + 1. For D > 1, other elements are equal.
void Pscf::Prdc::Cuda::RFieldDft< D >::serialize | ( | Archive & | ar, |
const unsigned int | version ) |
Serialize a Field to/from an Archive.
ar | archive |
version | archive version id |