Uses of Class
jcuda.runtime.cudaExtent

Packages that use cudaExtent
jcuda.runtime Contains the classes related to the JCuda runtime API. 
 

Uses of cudaExtent in jcuda.runtime
 

Fields in jcuda.runtime declared as cudaExtent
 cudaExtent cudaMemcpy3DParms.extent
          The extent field defines the dimensions of the transferred area in elements.
 

Methods in jcuda.runtime with parameters of type cudaExtent
static int JCuda.cudaMalloc3D(cudaPitchedPtr pitchDevPtr, cudaExtent extent)
          Allocates logical 1D, 2D, or 3D memory objects on the device.
static int JCuda.cudaMalloc3DArray(cudaArray arrayPtr, cudaChannelFormatDesc desc, cudaExtent extent)
          Calls cudaMalloc3DArray wit the default value '0' as the last parameter
static int JCuda.cudaMalloc3DArray(cudaArray arrayPtr, cudaChannelFormatDesc desc, cudaExtent extent, int flags)
          Allocate an array on the device.
static int JCuda.cudaMemset3D(cudaPitchedPtr pitchDevPtr, int value, cudaExtent extent)
          Initializes or sets device memory to a value.