Metadata-Version: 2.1
Name: dask-cuda
Version: 0.17.0a201017
Summary: Utilities for Dask and CUDA interactions
Home-page: https://github.com/rapidsai/dask-cuda
Author: RAPIDS development team
Author-email: mrocklin@nvidia.com
License: Apache 2.0
Description: [![RTD](https://readthedocs.org/projects/dask-cuda/badge/?version=latest)](https://dask-cuda.readthedocs.io/en/latest/?badge=latest)
        
        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
        -------
        
        ```python
        from dask_cuda import LocalCUDACluster
        from dask.distributed import Client
        
        cluster = LocalCUDACluster()
        client = Client(cluster)
        ```
        
        Documentation is available [here](https://dask-cuda.readthedocs.io/).
        
        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](https://rapids.ai) and
        [CuPy](https://cupy.chainer.org) with Dask is an ongoing effort.  You may wish
        to read about this effort at [blog.dask.org](https://blog.dask.org) for more
        information.  Additional information about Dask-CUDA can also be found in the
        [docs]( https://dask-cuda.readthedocs.io ).
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Database
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
