Uses of Class
com.ibm.cuda.CudaBuffer
-
Packages that use CudaBuffer Package Description com.ibm.cuda This package enables access to CUDA-capable devices from Java. -
-
Uses of CudaBuffer in com.ibm.cuda
Methods in com.ibm.cuda that return CudaBuffer Modifier and Type Method Description CudaBuffer
CudaBuffer. atOffset(long fromOffset)
Returns a sub-region of this buffer.CudaBuffer
CudaBuffer. slice(long fromOffset, long toOffset)
Returns a sub-region of this buffer.Methods in com.ibm.cuda with parameters of type CudaBuffer Modifier and Type Method Description CudaKernel.Parameters
CudaKernel.Parameters. add(CudaBuffer value)
Appends a buffer address to the list of parameter values.void
CudaBuffer. copyFrom(CudaBuffer source, long fromOffset, long toOffset)
Copies data from the specifiedsource
buffer (on a device) to this buffer (on the device).CudaKernel.Parameters
CudaKernel.Parameters. set(int index, CudaBuffer value)
Replaces the parameter at the specified index with the given buffer address.
-