Uses of Class
com.ibm.cuda.CudaStream
-
Packages that use CudaStream Package Description com.ibm.cuda This package enables access to CUDA-capable devices from Java. -
-
Uses of CudaStream in com.ibm.cuda
Fields in com.ibm.cuda declared as CudaStream Modifier and Type Field Description CudaStream
CudaGrid. stream
The stream on which the kernel should be queued (or null for the default stream).Methods in com.ibm.cuda with parameters of type CudaStream Modifier and Type Method Description void
CudaEvent. record(CudaStream stream)
Records this event on the specified stream.Constructors in com.ibm.cuda with parameters of type CudaStream Constructor Description CudaGrid(int gridDim, int blockDim, int sharedMemBytes, CudaStream stream)
Creates a grid with the specified x dimensions and shared memory size on the specified stream.CudaGrid(int gridDim, int blockDim, CudaStream stream)
Creates a grid with the specified x dimensions with no shared memory on the specified 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.
-