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 cudaMemcpy3DPeerParms.extent
          The extent field defines the dimensions of the transferred area in elements.
 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.cudaArrayGetInfo(cudaChannelFormatDesc desc, cudaExtent extent, int[] flags, cudaArray array)
          Gets info about the specified cudaArray.
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)
          Allocate an array on the device.
static int JCuda.cudaMalloc3DArray(cudaArray arrayPtr, cudaChannelFormatDesc desc, cudaExtent extent, int flags)
          Allocate an array on the device.
static int JCuda.cudaMallocMipmappedArray(cudaMipmappedArray mipmappedArray, cudaChannelFormatDesc desc, cudaExtent extent, int numLevels, int flags)
          Allocate a mipmapped array on the device.
static int JCuda.cudaMemset3D(cudaPitchedPtr pitchDevPtr, int value, cudaExtent extent)
          Initializes or sets device memory to a value.
static int JCuda.cudaMemset3DAsync(cudaPitchedPtr pitchedDevPtr, int value, cudaExtent extent, cudaStream_t stream)
          Initializes or sets device memory to a value.