The OpenD Programming Language

CUDA_LAUNCH_PARAMS

Kernel launch parameters

Members

Variables

blockDimX
uint blockDimX;

< X dimension of each thread block

blockDimY
uint blockDimY;

< Y dimension of each thread block

blockDimZ
uint blockDimZ;

< Z dimension of each thread block

gridDimX
uint gridDimX;

< Width of grid in blocks

gridDimY
uint gridDimY;

< Height of grid in blocks

gridDimZ
uint gridDimZ;

< Depth of grid in blocks

hStream
CUstream hStream;

< Stream identifier

kernelParams
void** kernelParams;

< Array of pointers to kernel parameters

sharedMemBytes
uint sharedMemBytes;

< Dynamic shared-memory size per thread block in bytes

Meta