Uses of Class
org.bytedeco.cuda.cudart.dim3
-
Packages that use dim3 Package Description org.bytedeco.cuda.cudart org.bytedeco.cuda.global -
-
Uses of dim3 in org.bytedeco.cuda.cudart
Methods in org.bytedeco.cuda.cudart that return dim3 Modifier and Type Method Description dim3cudaKernelNodeParams. blockDim()Block dimensionsdim3cudaLaunchParams. blockDim()Block dimentionsdim3dim3. getPointer(long i)dim3cudaKernelNodeParams. gridDim()Grid dimensionsdim3cudaLaunchParams. gridDim()Grid dimentionsdim3dim3. position(long position)dim3dim3. x(int setter)dim3dim3. y(int setter)dim3dim3. z(int setter)Methods in org.bytedeco.cuda.cudart with parameters of type dim3 Modifier and Type Method Description cudaKernelNodeParamscudaKernelNodeParams. blockDim(dim3 setter)cudaLaunchParamscudaLaunchParams. blockDim(dim3 setter)cudaKernelNodeParamscudaKernelNodeParams. gridDim(dim3 setter)cudaLaunchParamscudaLaunchParams. gridDim(dim3 setter) -
Uses of dim3 in org.bytedeco.cuda.global
Methods in org.bytedeco.cuda.global with parameters of type dim3 Modifier and Type Method Description static intcudart. cudaLaunchCooperativeKernel(Pointer func, dim3 gridDim, dim3 blockDim, Pointer args, long sharedMem, CUstream_st stream)static intcudart. cudaLaunchCooperativeKernel(Pointer func, dim3 gridDim, dim3 blockDim, PointerPointer args, long sharedMem, CUstream_st stream)\brief Launches a device function where thread blocks can cooperate and synchronize as they execute The function invokes kernel \p func on \p gridDim (\p gridDim.x × \p gridDim.y × \p gridDim.z) grid of blocks.static intcudart. cudaLaunchKernel(Pointer func, dim3 gridDim, dim3 blockDim, Pointer args, long sharedMem, CUstream_st stream)static intcudart. cudaLaunchKernel(Pointer func, dim3 gridDim, dim3 blockDim, PointerPointer args, long sharedMem, CUstream_st stream)\brief Launches a device function The function invokes kernel \p func on \p gridDim (\p gridDim.x × \p gridDim.y × \p gridDim.z) grid of blocks.
-