Expand description
Device and context management.
Modules§
- buffer
- Device memory buffers.
- context
- Device/context management.
- mem
- Memory-related helpers. Thin safe wrappers around the CUDA driver memory API.
- program
- Compiled kernel programs.
Structs§
- Cuda
ArgPacker - Packs kernel arguments into the
void**array expected bycuLaunchKernel. - Cuda
Device - An open CUDA device and its context. Destroys the context on drop.
- Cuda
Device Info - A CUDA device’s static properties, read from
cudaGetDevicePropertiesatCudaDevice::try_newtime. - Cuda
Launch Config - A kernel launch’s grid/block/cluster dimensions (in
(x, y, z)order).