27#ifndef math_cudaPtr_hpp
28#define math_cudaPtr_hpp
32#include <cuda_runtime.h>
166 return (
typename cpp2cudaType<devicePtrT>::cudaType *)
m_devicePtr;
174 const typename cpp2cudaType<devicePtrT>::cudaType *
operator()()
const
176 return (
typename cpp2cudaType<devicePtrT>::cudaType *)
m_devicePtr;
194 cudaError_t rv = cudaMalloc( (
void **)&m_devicePtr, sz *
sizeof(
devicePtrT ) );
196 if( rv != cudaSuccess )
198 std::cerr <<
"Error from cudaMalloc: ";
199 printf(
"[%s] %s\n", cudaGetErrorName( rv ), cudaGetErrorString( rv ) );
208 return resize( x_sz * y_sz );
214 return resize( x_sz * y_sz * z_sz );
220 return ::cudaMemset( m_devicePtr, 0, m_size *
sizeof(
devicePtrT ) );
228 int rv = cudaFree( m_devicePtr );
230 if( rv != cudaSuccess )
232 std::cerr <<
"Cuda Free Error \n";
247 int rv = cudaMemcpy( m_devicePtr, src, m_size *
sizeof(
devicePtrT ), cudaMemcpyHostToDevice );
249 if( rv != cudaSuccess )
251 std::cerr <<
"Cuda Memcpy error \n";
268 return upload( src );
275 int rv = cudaMemcpy( dest, m_devicePtr, m_size *
sizeof(
devicePtrT ), cudaMemcpyDeviceToHost );
277 if( rv != cudaSuccess )
279 std::cerr <<
"Cuda Memcpy error \n";
A smart-pointer wrapper for cuda device pointers.
const cpp2cudaType< devicePtrT >::cudaType * operator()() const
Conversion operator, accesses the device pointer for use in Cuda functions.
int resize(size_t x_sz, size_t y_sz)
Resize the memory allocation, in 2D.
cudaError_t initialize()
Initialize the array bytes to 0.
T devicePtrT
The device data type.
size_t m_size
The allocated size.
int download(hostPtrT *dest)
Copy from the device to the host.
int upload(const hostPtrT *src)
Copy from the host to the device, after allocation.
devicePtrT * m_devicePtr
The device pointer.
int free()
Free the memory allocation.
T hostPtrT
The host data type.
int resize(size_t x_sz, size_t y_sz, size_t z_sz)
Resize the memory allocation, in 3D.
int upload(const hostPtrT *src, size_t sz)
Copy from the host to the device with allocation.
cpp2cudaType< devicePtrT >::cudaType * operator()()
Conversion operator, accesses the device pointer for use in Cuda functions.
int resize(size_t sz)
Resize the memory allocation, in 1D.
~cudaPtr()
Destructor, frees memory if allocated.
Utilities for a template interface to cuda.