PSCF v1.2
Pscf::Prdc::Cuda::CField< D > Class Template Reference

Field of complex values on a regular mesh, allocated on a GPU device. More...

#include <CField.h>

Inheritance diagram for Pscf::Prdc::Cuda::CField< D >:
Pscf::DeviceArray< cudaComplex >

Public Member Functions

 CField ()
 Default constructor.
 
 CField (IntVec< D > const &meshDimensions)
 Allocating constructor.
 
 CField (CField const &other)
 Copy constructor.
 
virtual ~CField ()
 Destructor.
 
CField< D > & operator= (CField< D > const &other)
 Assignment operator, assignment from another CField<D>.
 
CField< 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 data on a regular mesh.
 
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.
 
template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 Serialize a Field to/from an Archive.
 
- Public Member Functions inherited from Pscf::DeviceArray< cudaComplex >
 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

- Public Types inherited from Pscf::DeviceArray< cudaComplex >
typedef cudaComplex ElementType
 Data type of each element.
 
- Protected Attributes inherited from Pscf::DeviceArray< cudaComplex >
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.
 

Detailed Description

template<int D>
class Pscf::Prdc::Cuda::CField< D >

Field of complex values on a regular mesh, allocated on a GPU device.

Definition at line 30 of file cuda/CField.h.

Constructor & Destructor Documentation

◆ CField() [1/3]

template<int D>
Pscf::Prdc::Cuda::CField< D >::CField ( )

Default constructor.

◆ CField() [2/3]

template<int D>
Pscf::Prdc::Cuda::CField< D >::CField ( IntVec< D > const & meshDimensions)

Allocating constructor.

Calls allocate(meshDimension) internally.

Parameters
meshDimensionsnumbers of grid points in each dimension

Definition at line 32 of file cuda/CField.tpp.

References Pscf::Prdc::Cpu::CField< D >::allocate(), and Pscf::Prdc::Cpu::CField< D >::meshDimensions().

◆ CField() [3/3]

template<int D>
Pscf::Prdc::Cuda::CField< D >::CField ( CField< D > const & other)

Copy constructor.

Allocates new memory and copies all elements by value.

Parameters
otherthe CField to be copied.

◆ ~CField()

template<int D>
virtual Pscf::Prdc::Cuda::CField< D >::~CField ( )
virtual

Destructor.

Deletes underlying C array, if allocated previously.

Member Function Documentation

◆ operator=() [1/2]

template<int D>
CField< D > & Pscf::Prdc::Cuda::CField< D >::operator= ( CField< D > const & other)

Assignment operator, assignment from another CField<D>.

Performs a deep copy, by copying all elements of the RHS CField<D> from device memory to device memory.

The RHS CField must be allocated. If this LHS CField is not allocated on entry, allocate it before copying elements. If both LHS and RHS objects are allocated on entry, the capacities must be equal.

Parameters
otherthe RHS CField<D>

◆ operator=() [2/2]

template<int D>
CField< D > & Pscf::Prdc::Cuda::CField< D >::operator= ( HostDArray< cudaComplex > const & other)

Assignment operator, assignment from a HostDArray<cudaComplex>.

Performs a deep copy, by copying all elements of the RHS CField<D> from host memory to device memory.

The RHS HostDArray<cudaComplex> and LHS CField<D> must both be allocated with equal capacity values on entry.

Parameters
otherthe RHS HostDArray<cudaComplex>

Definition at line 70 of file cuda/CField.tpp.

References Util::Array< Data >::capacity(), Util::DArray< T >::isAllocated(), Pscf::DeviceArray< Data >::operator=(), and UTIL_THROW.

◆ allocate()

template<int D>
void Pscf::Prdc::Cuda::CField< D >::allocate ( IntVec< D > const & meshDimensions)

Allocate the underlying C array for data on a regular mesh.

Exceptions
Exceptionif the CField is already allocated.
Parameters
meshDimensionsnumber of grid points in each dimension

References Pscf::Prdc::Cuda::CField< D >::associate().

◆ associate()

template<int D>
void Pscf::Prdc::Cuda::CField< D >::associate ( DeviceArray< cudaComplex > & arr,
int beginId,
IntVec< D > const & meshDimensions )

Associate this object with a slice of another DeviceArray.

Exceptions
Exceptionif the array is already allocated.
Parameters
arrparent array that owns the data
beginIdindex in the parent array at which this array starts
meshDimensionsnumber of grid points in each dimension

Definition at line 108 of file cuda/CField.tpp.

References Pscf::DeviceArray< Data >::associate(), and UTIL_CHECK.

Referenced by Pscf::Prdc::Cuda::CField< D >::allocate().

◆ meshDimensions()

template<int D>
IntVec< D > const & Pscf::Prdc::Cuda::CField< D >::meshDimensions ( ) const

Return mesh dimensions by constant reference.

◆ serialize()

template<int D>
template<class Archive >
void Pscf::Prdc::Cuda::CField< D >::serialize ( Archive & ar,
const unsigned int version )

Serialize a Field to/from an Archive.

Parameters
ararchive
versionarchive version id

The documentation for this class was generated from the following files: