Struct CudaMallocAllocator

Struct Documentation

struct CudaMallocAllocator

Uses cudaMalloc and cudaFree to allocate and deallocate memory on NVIDIA GPUs.

Public Functions

void *allocate(std::size_t size)

Allocate bytes of memory using cudaMalloc.

Return

Pointer to start of the allocation.

Parameters
  • bytes: Number of bytes to allocate.

Exceptions

void deallocate(void *ptr)

Deallocate memory using cudaFree.

Parameters
  • ptr: Address to deallocate.

Exceptions