|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CUstream | |
|---|---|
| jcuda.driver | Contains the classes related to the JCuda driver API. |
| Uses of CUstream in jcuda.driver |
|---|
| Methods in jcuda.driver with parameters of type CUstream | |
|---|---|
static int |
JCudaDriver.cuEventRecord(CUevent hEvent,
CUstream hStream)
Records an event. |
static int |
JCudaDriver.cuGLMapBufferObjectAsync(CUdeviceptr dptr,
long[] size,
int buffer,
CUstream hStream)
Maps an OpenGL buffer object. |
static int |
JCudaDriver.cuGLUnmapBufferObjectAsync(int buffer,
CUstream hStream)
Unmaps an OpenGL buffer object. |
static int |
JCudaDriver.cuGraphicsMapResources(int count,
CUgraphicsResource[] resources,
CUstream hStream)
Map graphics resources for access by CUDA. |
static int |
JCudaDriver.cuGraphicsUnmapResources(int count,
CUgraphicsResource[] resources,
CUstream hStream)
Unmap graphics resources. |
static int |
JCudaDriver.cuLaunchGridAsync(CUfunction f,
int grid_width,
int grid_height,
CUstream hStream)
Launches a CUDA function. |
static int |
JCudaDriver.cuMemcpy2DAsync(CUDA_MEMCPY2D pCopy,
CUstream hStream)
Copies memory for 2D arrays. |
static int |
JCudaDriver.cuMemcpy3DAsync(CUDA_MEMCPY3D pCopy,
CUstream hStream)
Copies memory for 3D arrays. |
static int |
JCudaDriver.cuMemcpyAtoHAsync(Pointer dstHost,
CUarray srcArray,
long srcIndex,
long ByteCount,
CUstream hStream)
Copies memory from Array to Host. |
static int |
JCudaDriver.cuMemcpyDtoDAsync(CUdeviceptr dstDevice,
CUdeviceptr srcDevice,
long ByteCount,
CUstream hStream)
Copies memory from Device to Device. |
static int |
JCudaDriver.cuMemcpyDtoHAsync(Pointer dstHost,
CUdeviceptr srcDevice,
long ByteCount,
CUstream hStream)
Copies memory from Device to Host. |
static int |
JCudaDriver.cuMemcpyHtoAAsync(CUarray dstArray,
long dstIndex,
Pointer pSrc,
long ByteCount,
CUstream hStream)
Copies memory from Host to Array. |
static int |
JCudaDriver.cuMemcpyHtoDAsync(CUdeviceptr dstDevice,
Pointer srcHost,
long ByteCount,
CUstream hStream)
Copies memory from Host to Device. |
static int |
JCudaDriver.cuStreamCreate(CUstream phStream,
int Flags)
Create a stream. |
static int |
JCudaDriver.cuStreamDestroy(CUstream hStream)
Destroys a stream. |
static int |
JCudaDriver.cuStreamQuery(CUstream hStream)
Determine status of a compute stream. |
static int |
JCudaDriver.cuStreamSynchronize(CUstream hStream)
Wait until a stream's tasks are completed. |
static int |
JCudaDriver.cuStreamWaitEvent(CUstream hStream,
CUevent hEvent,
int Flags)
Make a compute stream wait on an event. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||