The OpenD Programming Language

CUDA_KERNEL_NODE_PARAMS

GPU kernel node 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

extra
void** extra;

< Extra options

func
CUfunction func;

< Kernel to launch

gridDimX
uint gridDimX;

< Width of grid in blocks

gridDimY
uint gridDimY;

< Height of grid in blocks

gridDimZ
uint gridDimZ;

< Depth of grid in blocks

kernelParams
void** kernelParams;

< Array of pointers to kernel parameters

sharedMemBytes
uint sharedMemBytes;

< Dynamic shared-memory size per thread block in bytes

Meta