PSCF v1.2
|
HostDArray containing cudaComplex elements. More...
#include <HostDArrayComplex.h>
Public Types | |
typedef Prdc::Cuda::cudaComplex | ElementType |
Type of each element. | |
typedef Prdc::Cuda::cudaComplex | Complex |
Complex number type. | |
typedef Prdc::Cuda::cudaReal | Real |
Type of real or imaginary part of a Complex number. | |
typedef HostDArray< Complex > | Base |
Base class type. | |
![]() | |
typedef Prdc::Cuda::cudaComplex | ElementType |
Data type of each element. | |
Public Member Functions | |
HostDArrayComplex () | |
Default constructor. | |
HostDArrayComplex (int capacity) | |
Allocating constructor. | |
HostDArrayComplex (HostDArrayComplex const &other) | |
Copy constructor. | |
~HostDArrayComplex () | |
Destructor. | |
![]() | |
HostDArray () | |
Default constructor. | |
HostDArray (int capacity) | |
Allocating constructor. | |
HostDArray (DArray< Prdc::Cuda::cudaComplex > const &other) | |
Copy constructor. | |
virtual | ~HostDArray () |
Destructor. | |
virtual HostDArray< Prdc::Cuda::cudaComplex > & | operator= (const DeviceArray< Prdc::Cuda::cudaComplex > &other) |
Assignment operator, assign from DeviceArray<Data> device array. | |
void | copySlice (DeviceArray< Prdc::Cuda::cudaComplex > const &other, int beginId) |
Copy a slice of the data from a larger DeviceArray into this array. | |
![]() | |
DArray () | |
Default constructor. | |
DArray (DArray< Data > const &other) | |
Copy constructor. | |
virtual | ~DArray () |
Destructor. | |
DArray< Data > & | operator= (DArray< Data > const &other) |
Assignment operator. | |
void | allocate (int capacity) |
Allocate the underlying C array. | |
void | deallocate () |
Dellocate the underlying C array. | |
void | reallocate (int capacity) |
Reallocate the underlying C array and copy to new location. | |
bool | isAllocated () const |
Return true if this DArray has been allocated, false otherwise. | |
void | serialize (Archive &ar, const unsigned int version) |
Serialize a DArray to/from an Archive. | |
![]() | |
virtual | ~Array () |
Destructor. | |
int | capacity () const |
Return allocated size. | |
void | begin (ArrayIterator< Data > &iterator) |
Set an iterator to begin this Array. | |
void | begin (ConstArrayIterator< Data > &iterator) const |
Set a const iterator to begin this Array. | |
Data & | operator[] (int i) |
Get an element by non-const reference. | |
Data const & | operator[] (int i) const |
Get an element by const reference. | |
Data * | cArray () |
Return a pointer to the underlying C array. | |
Data const * | cArray () const |
Return pointer to const to the underlying C array. | |
Additional Inherited Members | |
![]() | |
Array () | |
Default constructor. | |
![]() | |
Data * | data_ |
Pointer to an array of Data elements. | |
int | capacity_ |
Allocated size of the data_ array. | |
HostDArray containing cudaComplex elements.
Defined to add typedefs.
Definition at line 24 of file HostDArrayComplex.h.
Prdc::Cuda::cudaComplex Pscf::Rpg::HostDArrayComplex::ElementType |
Type of each element.
Definition at line 32 of file HostDArrayComplex.h.
Prdc::Cuda::cudaComplex Pscf::Rpg::HostDArrayComplex::Complex |
Complex number type.
Definition at line 37 of file HostDArrayComplex.h.
Prdc::Cuda::cudaReal Pscf::Rpg::HostDArrayComplex::Real |
Type of real or imaginary part of a Complex number.
Definition at line 42 of file HostDArrayComplex.h.
Base class type.
Definition at line 47 of file HostDArrayComplex.h.
Pscf::Rpg::HostDArrayComplex::HostDArrayComplex | ( | ) |
Default constructor.
Definition at line 18 of file HostDArrayComplex.cu.
Pscf::Rpg::HostDArrayComplex::HostDArrayComplex | ( | int | capacity | ) |
Allocating constructor.
This constructor allocates memory for the array.
capacity | desired capacity of array |
Definition at line 25 of file HostDArrayComplex.cu.
Pscf::Rpg::HostDArrayComplex::HostDArrayComplex | ( | HostDArrayComplex const & | other | ) |
Copy constructor.
Perform a deep copy of all array elements.
other | other object being copied to this one. |
Definition at line 32 of file HostDArrayComplex.cu.
Pscf::Rpg::HostDArrayComplex::~HostDArrayComplex | ( | ) |
Destructor.
Definition at line 39 of file HostDArrayComplex.cu.