| Package | Description |
|---|---|
| org.bytedeco.cuda.global |
| Modifier and Type | Method and Description |
|---|---|
static int |
cudart.cuLibraryGetGlobal(long[] dptr,
SizeTPointer bytes,
CUlib_st library,
BytePointer name) |
static int |
cudart.cuLibraryGetGlobal(long[] dptr,
SizeTPointer bytes,
CUlib_st library,
String name) |
static int |
cudart.cuLibraryGetGlobal(LongBuffer dptr,
SizeTPointer bytes,
CUlib_st library,
BytePointer name) |
static int |
cudart.cuLibraryGetGlobal(LongBuffer dptr,
SizeTPointer bytes,
CUlib_st library,
String name) |
static int |
cudart.cuLibraryGetGlobal(LongPointer dptr,
SizeTPointer bytes,
CUlib_st library,
BytePointer name)
\brief Returns a global device pointer
Returns in \p *dptr and \p *bytes the base pointer and size of the global with
name \p name for the requested library \p library and the current context.
|
static int |
cudart.cuLibraryGetGlobal(LongPointer dptr,
SizeTPointer bytes,
CUlib_st library,
String name) |
static int |
cudart.cuLibraryGetKernel(CUkern_st pKernel,
CUlib_st library,
BytePointer name)
\brief Returns a kernel handle
Returns in \p pKernel the handle of the kernel with name \p name located in library \p library.
|
static int |
cudart.cuLibraryGetKernel(CUkern_st pKernel,
CUlib_st library,
String name) |
static int |
cudart.cuLibraryGetManaged(long[] dptr,
SizeTPointer bytes,
CUlib_st library,
BytePointer name) |
static int |
cudart.cuLibraryGetManaged(long[] dptr,
SizeTPointer bytes,
CUlib_st library,
String name) |
static int |
cudart.cuLibraryGetManaged(LongBuffer dptr,
SizeTPointer bytes,
CUlib_st library,
BytePointer name) |
static int |
cudart.cuLibraryGetManaged(LongBuffer dptr,
SizeTPointer bytes,
CUlib_st library,
String name) |
static int |
cudart.cuLibraryGetManaged(LongPointer dptr,
SizeTPointer bytes,
CUlib_st library,
BytePointer name)
\brief Returns a pointer to managed memory
Returns in \p *dptr and \p *bytes the base pointer and size of the managed memory with
name \p name for the requested library \p library.
|
static int |
cudart.cuLibraryGetManaged(LongPointer dptr,
SizeTPointer bytes,
CUlib_st library,
String name) |
static int |
cudart.cuLibraryGetModule(CUmod_st pMod,
CUlib_st library)
\brief Returns a module handle
Returns in \p pMod the module handle associated with the current context located in
library \p library.
|
static int |
cudart.cuLibraryGetUnifiedFunction(Pointer fptr,
CUlib_st library,
BytePointer symbol) |
static int |
cudart.cuLibraryGetUnifiedFunction(Pointer fptr,
CUlib_st library,
String symbol) |
static int |
cudart.cuLibraryGetUnifiedFunction(PointerPointer fptr,
CUlib_st library,
BytePointer symbol)
\brief Returns a pointer to a unified function
Returns in \p *fptr the function pointer to a unified function denoted by \p symbol.
|
static int |
cudart.cuLibraryLoadData(CUlib_st library,
Pointer code,
int[] jitOptions,
Pointer jitOptionsValues,
int numJitOptions,
int[] libraryOptions,
Pointer libraryOptionValues,
int numLibraryOptions) |
static int |
cudart.cuLibraryLoadData(CUlib_st library,
Pointer code,
IntBuffer jitOptions,
Pointer jitOptionsValues,
int numJitOptions,
IntBuffer libraryOptions,
Pointer libraryOptionValues,
int numLibraryOptions) |
static int |
cudart.cuLibraryLoadData(CUlib_st library,
Pointer code,
IntPointer jitOptions,
Pointer jitOptionsValues,
int numJitOptions,
IntPointer libraryOptions,
Pointer libraryOptionValues,
int numLibraryOptions) |
static int |
cudart.cuLibraryLoadData(CUlib_st library,
Pointer code,
IntPointer jitOptions,
PointerPointer jitOptionsValues,
int numJitOptions,
IntPointer libraryOptions,
PointerPointer libraryOptionValues,
int numLibraryOptions)
\brief Load a library with specified code and options
Takes a pointer \p code and loads the corresponding library \p library into
all contexts existent at the time of the call and future contexts at the time
of creation until the library is unloaded with ::cuLibraryUnload().
|
static int |
cudart.cuLibraryLoadFromFile(CUlib_st library,
BytePointer fileName,
int[] jitOptions,
Pointer jitOptionsValues,
int numJitOptions,
int[] libraryOptions,
Pointer libraryOptionValues,
int numLibraryOptions) |
static int |
cudart.cuLibraryLoadFromFile(CUlib_st library,
BytePointer fileName,
IntBuffer jitOptions,
Pointer jitOptionsValues,
int numJitOptions,
IntBuffer libraryOptions,
Pointer libraryOptionValues,
int numLibraryOptions) |
static int |
cudart.cuLibraryLoadFromFile(CUlib_st library,
BytePointer fileName,
IntPointer jitOptions,
Pointer jitOptionsValues,
int numJitOptions,
IntPointer libraryOptions,
Pointer libraryOptionValues,
int numLibraryOptions) |
static int |
cudart.cuLibraryLoadFromFile(CUlib_st library,
BytePointer fileName,
IntPointer jitOptions,
PointerPointer jitOptionsValues,
int numJitOptions,
IntPointer libraryOptions,
PointerPointer libraryOptionValues,
int numLibraryOptions)
\brief Load a library with specified file and options
Takes a filename \p fileName and loads the corresponding library \p library into
all contexts existent at the time of the call and future contexts at the time of
creation until the library is unloaded with ::cuLibraryUnload().
|
static int |
cudart.cuLibraryLoadFromFile(CUlib_st library,
String fileName,
int[] jitOptions,
Pointer jitOptionsValues,
int numJitOptions,
int[] libraryOptions,
Pointer libraryOptionValues,
int numLibraryOptions) |
static int |
cudart.cuLibraryLoadFromFile(CUlib_st library,
String fileName,
IntBuffer jitOptions,
Pointer jitOptionsValues,
int numJitOptions,
IntBuffer libraryOptions,
Pointer libraryOptionValues,
int numLibraryOptions) |
static int |
cudart.cuLibraryLoadFromFile(CUlib_st library,
String fileName,
IntPointer jitOptions,
Pointer jitOptionsValues,
int numJitOptions,
IntPointer libraryOptions,
Pointer libraryOptionValues,
int numLibraryOptions) |
static int |
cudart.cuLibraryUnload(CUlib_st library)
\brief Unloads a library
Unloads the library specified with \p library
|
Copyright © 2024. All rights reserved.