|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CUarray | |
---|---|
jcuda.driver | Contains the classes related to the JCuda driver API. |
Uses of CUarray in jcuda.driver |
---|
Fields in jcuda.driver declared as CUarray | |
---|---|
CUarray |
CUDA_MEMCPY3D.dstArray
The destination array. |
CUarray |
CUDA_MEMCPY2D.dstArray
The destination array. |
CUarray |
CUDA_MEMCPY3D.srcArray
The source array. |
CUarray |
CUDA_MEMCPY2D.srcArray
The source array. |
Methods in jcuda.driver with parameters of type CUarray | |
---|---|
static int |
JCudaDriver.cuArray3DCreate(CUarray pHandle,
CUDA_ARRAY3D_DESCRIPTOR pAllocateArray)
Creates a CUDA array. |
static int |
JCudaDriver.cuArray3DGetDescriptor(CUDA_ARRAY3D_DESCRIPTOR pArrayDescriptor,
CUarray hArray)
Get a 3D CUDA array descriptor. |
static int |
JCudaDriver.cuArrayCreate(CUarray pHandle,
CUDA_ARRAY_DESCRIPTOR pAllocateArray)
Creates a 1D or 2D CUDA array. |
static int |
JCudaDriver.cuArrayDestroy(CUarray hArray)
Destroys a CUDA array. |
static int |
JCudaDriver.cuArrayGetDescriptor(CUDA_ARRAY_DESCRIPTOR pArrayDescriptor,
CUarray hArray)
Get a 1D or 2D CUDA array descriptor. |
static int |
JCudaDriver.cuGraphicsSubResourceGetMappedArray(CUarray pArray,
CUgraphicsResource resource,
int arrayIndex,
int mipLevel)
Returns in *pArray an array through which the subresource of the mapped graphics resource resource which corresponds to array index arrayIndex and mipmap level mipLevel may be accessed. |
static int |
JCudaDriver.cuMemcpyAtoA(CUarray dstArray,
int dstIndex,
CUarray srcArray,
int srcIndex,
int ByteCount)
Copies memory from Array to Array. |
static int |
JCudaDriver.cuMemcpyAtoD(CUdeviceptr dstDevice,
CUarray hSrc,
int SrcIndex,
int ByteCount)
Copies memory from Array to Device. |
static int |
JCudaDriver.cuMemcpyAtoH(Pointer dstHost,
CUarray srcArray,
int srcIndex,
int ByteCount)
Copies memory from Array to Host. |
static int |
JCudaDriver.cuMemcpyAtoHAsync(Pointer dstHost,
CUarray srcArray,
int srcIndex,
int ByteCount,
CUstream hStream)
Copies memory. |
static int |
JCudaDriver.cuMemcpyDtoA(CUarray dstArray,
int dstIndex,
CUdeviceptr srcDevice,
int ByteCount)
Copies memory from Device to Array. |
static int |
JCudaDriver.cuMemcpyHtoA(CUarray dstArray,
int dstIndex,
Pointer pSrc,
int ByteCount)
Copies memory from Host to Array. |
static int |
JCudaDriver.cuMemcpyHtoAAsync(CUarray dstArray,
int dstIndex,
Pointer pSrc,
int ByteCount,
CUstream hStream)
Copies memory. |
static int |
JCudaDriver.cuTexRefGetArray(CUarray phArray,
CUtexref hTexRef)
Gets the array bound to a texture-reference. |
static int |
JCudaDriver.cuTexRefSetArray(CUtexref hTexRef,
CUarray hArray,
int Flags)
Binds an array to a texture-reference. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |