7.25. CUDA_KERNEL_NODE_PARAMS_v2
Defined in cuda.h
-
struct CUDA_KERNEL_NODE_PARAMS_v2
-
GPU kernel node parameters.
Public Members
-
CUfunction func
-
Kernel to launch.
-
unsigned int gridDimX
-
Width of grid in blocks.
-
unsigned int gridDimY
-
Height of grid in blocks.
-
unsigned int gridDimZ
-
Depth of grid in blocks.
-
unsigned int blockDimX
-
X dimension of each thread block.
-
unsigned int blockDimY
-
Y dimension of each thread block.
-
unsigned int blockDimZ
-
Z dimension of each thread block.
-
Dynamic shared-memory size per thread block in bytes.
-
void **kernelParams
-
Array of pointers to kernel parameters.
-
void **extra
-
Extra options.
-
CUfunction func