Uses of Class
jcuda.driver.CUstream

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, int[] size, int buffer, CUstream hStream)
          Deprecated. As of CUDA 3.0
static int JCudaDriver.cuGLUnmapBufferObjectAsync(int buffer, CUstream hStream)
          Deprecated. As of CUDA 3.0
static int JCudaDriver.cuGraphicsMapResources(int count, CUgraphicsResource[] resources, CUstream hStream)
          Maps the count graphics resources in resources for access by CUDA.
static int JCudaDriver.cuGraphicsUnmapResources(int count, CUgraphicsResource[] resources, CUstream hStream)
          Unmaps the count graphics resources in resources.
static int JCudaDriver.cuLaunchGridAsync(CUfunction f, int grid_width, int grid_height, CUstream hStream)
           
static int JCudaDriver.cuMemcpy2DAsync(CUDA_MEMCPY2D pCopy, CUstream hStream)
          Copies memory.
static int JCudaDriver.cuMemcpy3DAsync(CUDA_MEMCPY3D pCopy, CUstream hStream)
          Copies memory.
static int JCudaDriver.cuMemcpyAtoHAsync(Pointer dstHost, CUarray srcArray, int srcIndex, int ByteCount, CUstream hStream)
          Copies memory.
static int JCudaDriver.cuMemcpyDtoDAsync(CUdeviceptr dstDevice, CUdeviceptr srcDevice, int ByteCount, CUstream hStream)
          Copies memory.
static int JCudaDriver.cuMemcpyDtoHAsync(Pointer dstHost, CUdeviceptr srcDevice, int ByteCount, CUstream hStream)
          Copies memory.
static int JCudaDriver.cuMemcpyHtoAAsync(CUarray dstArray, int dstIndex, Pointer pSrc, int ByteCount, CUstream hStream)
          Copies memory.
static int JCudaDriver.cuMemcpyHtoDAsync(CUdeviceptr dstDevice, Pointer srcHost, int ByteCount, CUstream hStream)
          Copies memory.
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)
          Block until a stream’s tasks are completed.