Skip to content

rapidsai/dask-cuda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3b3b356 · Dec 11, 2024
Sep 19, 2024
Nov 20, 2024
Dec 11, 2024
Nov 5, 2024
Sep 19, 2024
Jan 19, 2023
Nov 16, 2022
Apr 12, 2021
Dec 11, 2024
Dec 11, 2024
Jan 2, 2019
Oct 27, 2023
Jul 19, 2023
Sep 19, 2024
Jun 30, 2023
Dec 11, 2024
Dec 11, 2024

Repository files navigation

Dask CUDA

Various utilities to improve deployment and management of Dask workers on CUDA-enabled systems.

This library is experimental, and its API is subject to change at any time without notice.

Example

from dask_cuda import LocalCUDACluster
from dask.distributed import Client

cluster = LocalCUDACluster()
client = Client(cluster)

Documentation is available here.

What this is not

This library does not automatically convert your Dask code to run on GPUs.

It only helps with deployment and management of Dask workers in multi-GPU systems. Parallelizing GPU libraries like RAPIDS and CuPy with Dask is an ongoing effort. You may wish to read about this effort at blog.dask.org for more information. Additional information about Dask-CUDA can also be found in the docs.