Package | Description |
---|---|
ai.rapids.cudf |
Modifier and Type | Class and Description |
---|---|
class |
CudaFatalException
CudaFatalException is a kind of CudaException which leaves the process in an inconsistent state
and any further CUDA work will return the same error.
|
Modifier and Type | Method and Description |
---|---|
static void |
Cuda.asyncMemset(long dst,
byte value,
long count)
Sets count bytes starting at the memory area pointed to by dst, with value.
|
static void |
Cuda.autoSetDevice()
Set the device for this thread to the appropriate one.
|
static void |
Cuda.freeZero()
Calls cudaFree(0).
|
static int |
Cuda.getComputeCapabilityMajor()
Gets the major CUDA compute capability of the current device.
|
static int |
Cuda.getComputeCapabilityMinor()
Gets the minor CUDA compute capability of the current device.
|
static int |
Cuda.getDevice()
Get the id of the current device.
|
static int |
Cuda.getDeviceCount()
Get the device count.
|
static int |
Cuda.getDriverVersion()
Get the CUDA Driver version, which is the latest version of CUDA supported by the driver.
|
static int |
Cuda.getRuntimeVersion()
Get the CUDA Runtime version of the current CUDA Runtime instance.
|
static CudaMemInfo |
Cuda.memGetInfo()
Mapping: cudaMemGetInfo(size_t *free, size_t *total)
|
static void |
Cuda.memset(long dst,
byte value,
long count)
Sets count bytes starting at the memory area pointed to by dst, with value.
|
static void |
Cuda.setDevice(int device)
Set the id of the current device.
|
Copyright © 2024. All rights reserved.