1#ifndef PSCF_HOST_D_ARRAY_H
2#define PSCF_HOST_D_ARRAY_H
11#include "DeviceArray.h"
12#include "cudaErrorCheck.h"
13#include <util/containers/DArray.h>
15#include <cuda_runtime.h>
41 template <
typename Data>
122 template <
typename Data>
130 template <
typename Data>
138 template <
typename Data>
146 template <
typename Data>
153 template <
typename Data>
159 UTIL_THROW(
"RHS DeviceArray<Data> must be allocated.");
169 UTIL_THROW(
"Cannot assign arrays of unequal capacity");
175 cudaMemcpyDeviceToHost) );
183 template <
typename Data>
189 UTIL_THROW(
"RHS DeviceArray<Data> must be allocated.");
194 UTIL_THROW(
"LHS HostDArray<Data> must be allocated.");
199 UTIL_THROW(
"Slice must not exceed the capacity of device array.");
206 cudaMemcpyDeviceToHost) );
Dynamic array on the GPU device with aligned data.
bool isAllocated() const
Return true if the array has been allocated, false otherwise.
int capacity() const
Return allocated capacity.
Data * cArray()
Return pointer to underlying C array.
Template for dynamic array stored in host CPU memory.
void copySlice(DeviceArray< Data > const &other, int beginId)
Copy a slice of the data from a larger DeviceArray into this array.
HostDArray()
Default constructor.
HostDArray(int capacity)
Allocating constructor.
virtual ~HostDArray()
Destructor.
Data ElementType
Data type of each element.
virtual HostDArray< Data > & operator=(const DeviceArray< Data > &other)
Assignment operator, assign from DeviceArray<Data> device array.
HostDArray(DArray< Data > const &other)
Copy constructor.
int capacity() const
Return allocated size.
Dynamically allocatable contiguous array template.
void allocate(int capacity)
Allocate the underlying C array.
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.