Uses of Class
com.ibm.cuda.Dim3
-
Packages that use Dim3 Package Description com.ibm.cuda This package enables access to CUDA-capable devices from Java. -
-
Uses of Dim3 in com.ibm.cuda
Constructors in com.ibm.cuda with parameters of type Dim3 Constructor Description CudaGrid(Dim3 gridDim, Dim3 blockDim)
Creates a grid with the specified dimensions, with no shared memory on the default stream.CudaGrid(Dim3 gridDim, Dim3 blockDim, int sharedMemBytes)
Creates a grid with the specified dimensions and shared memory size on the default stream.CudaGrid(Dim3 gridDim, Dim3 blockDim, int sharedMemBytes, CudaStream stream)
Creates a grid with the specified dimensions and shared memory size on the specified stream.CudaGrid(Dim3 gridDim, Dim3 blockDim, CudaStream stream)
Creates a grid with the specified dimensions with no shared memory on the specified stream.
-