Essentials
Initialization
CUDA.functional — Method
functional(show_reason=false)Check if the package has been configured successfully and is ready to use.
This call is intended for packages that support conditionally using an available GPU. If you fail to check whether CUDA is functional, actual use of functionality might warn and error.
CUDA.has_cuda — Function
has_cuda()::BoolCheck whether the local system provides an installation of the CUDA driver and runtime. Use this function if your code loads packages that require CUDA.jl. ```
CUDA.has_cuda_gpu — Function
has_cuda_gpu()::BoolCheck whether the local system provides an installation of the CUDA driver and runtime, and if it contains a CUDA-capable GPU. See has_cuda for more details.
Note that this function initializes the CUDA API in order to check for the number of GPUs.
Global state
CUDA.context — Function
context(ptr)Identify the context memory was allocated in.
context()::CuContextGet or create a CUDA context for the current thread (as opposed to current_context which may return nothing if there is no context bound to the current thread).
CUDA.context! — Function
context!(ctx::CuContext)
context!(ctx::CuContext) do ... endBind the current host thread to the context ctx. Returns the previously-bound context. If used with do-block syntax, the change is only temporary.
Note that the contexts used with this call should be previously acquired by calling context, and not arbitrary contexts created by calling the CuContext constructor.
CUDA.device — Function
device(::CuContext)Returns the device for a context.
device(ptr)Identify the device memory was allocated on.
device()::CuDeviceGet the CUDA device for the current thread, similar to how context() works compared to current_context().
CUDA.device! — Function
device!(dev::Integer)
device!(dev::CuDevice)
device!(dev) do ... endSets dev as the current active device for the calling host thread. Devices can be specified by integer id, or as a CuDevice (slightly faster). Both functions can be used with do-block syntax, in which case the device is only changed temporarily, without changing the default device used to initialize new threads or tasks.
Calling this function at the start of a session will make sure CUDA is initialized (i.e., a primary context will be created and activated).
CUDA.device_reset! — Function
device_reset!(dev::CuDevice=device())Reset the CUDA state associated with a device. This call with release the underlying context, at which point any objects allocated in that context will be invalidated.
Note that this does not guarantee to free up all memory allocations, as many are not bound to a context, so it is generally not useful to call this function to free up memory.
CUDA.stream — Function
stream()Get the CUDA stream that should be used as the default one for the currently executing task.
CUDA.stream! — Function
stream!(::CuStream)
stream!(::CuStream) do ... endChange the default CUDA stream for the currently executing task, temporarily if using the do-block version of this function.