Metadata-Version: 2.4
Name: cuml
Version: 26.2.0
Summary: cuML - RAPIDS ML Algorithms
Author: NVIDIA Corporation
License-Expression: Apache-2.0
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Project-URL: Homepage, https://github.com/rapidsai/cuml
Project-URL: Documentation, https://docs.rapids.ai/api/cuml/stable/
Requires-Python: >=3.10
Requires-Dist: cuda-python<14.0,>=13.0.1
Requires-Dist: cuda-toolkit[cublas,cufft,curand,cusolver,cusparse]<14,>=12
Requires-Dist: cudf==26.2.*
Requires-Dist: cupy-cuda13x>=13.6.0
Requires-Dist: joblib>=0.11
Requires-Dist: libcuml==26.2.*
Requires-Dist: numba-cuda<0.23.0,>=0.22.1
Requires-Dist: numba<0.62.0,>=0.60.0
Requires-Dist: numpy<3.0,>=1.23
Requires-Dist: packaging
Requires-Dist: pylibraft==26.2.*
Requires-Dist: rich
Requires-Dist: rmm==26.2.*
Requires-Dist: scikit-learn>=1.5
Requires-Dist: scipy>=1.13.0
Requires-Dist: treelite<5.0.0,>=4.6.1
Provides-Extra: test
Requires-Dist: certifi; extra == "test"
Requires-Dist: cython<3.2.0,>=3.0.0; extra == "test"
Requires-Dist: hdbscan<0.8.40,>=0.8.39; extra == "test"
Requires-Dist: hypothesis<7,>=6.0; extra == "test"
Requires-Dist: ipython>=7.32.0; extra == "test"
Requires-Dist: nltk; extra == "test"
Requires-Dist: numpydoc<1.9; extra == "test"
Requires-Dist: nvidia-ml-py>=12; extra == "test"
Requires-Dist: pynndescent; extra == "test"
Requires-Dist: pytest-benchmark; extra == "test"
Requires-Dist: pytest-cases; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: pytest-xdist; extra == "test"
Requires-Dist: pytest<9.0; extra == "test"
Requires-Dist: pyyaml; extra == "test"
Requires-Dist: scikit-learn>=1.5; extra == "test"
Requires-Dist: seaborn; extra == "test"
Requires-Dist: statsmodels; extra == "test"
Requires-Dist: umap-learn==0.5.7; extra == "test"
Requires-Dist: xgboost>=2.1.0; extra == "test"
Provides-Extra: dask
Requires-Dist: dask-cudf==26.2.*; extra == "dask"
Requires-Dist: raft-dask==26.2.*; extra == "dask"
Requires-Dist: rapids-dask-dependency==26.2.*; extra == "dask"
Provides-Extra: test-dask
Requires-Dist: dask-cuda==26.2.*; extra == "test-dask"
Requires-Dist: dask-ml>=2024; extra == "test-dask"
Description-Content-Type: text/markdown

# cuML Python Package

This folder contains the Python and Cython code of the algorithms and ML primitives of cuML, that are distributed in the Python cuML package.

Contents:

- [cuML Python Package](#cuml-python-package)
    - [Build Configuration](#build-configuration)
    - [RAFT Integration in cuml.raft](#raft-integration-in-cumlraft)
    - [Build Requirements](#build-requirements)
    - [Python Tests](#python-tests)

### Build Configuration

The build system uses setup.py for configuration and building.

cuML's setup.py can be configured through environment variables and command line arguments.

The environment variables are:

| Environment variable | Possible values | Default behavior if not set | Behavior |
| --- | --- | --- | --- |
| CUDA_HOME | path/to/cuda_toolkit | Inferred by location of `nvcc` | Optional variable allowing to manually specify location of the CUDA toolkit. |
| CUML_BUILD_PATH | path/to/libcuml_build_folder | Looked for in path_to_cuml_repo/cpp/build | Optional variable allowing to manually specify location of libcuml++ build folder. |
| RAFT_PATH | path/to/raft |  Looked for in path_to_cuml_repo/cpp/build, if not found clone  | Optional variable allowing to manually specify location of the RAFT Repository. |

The command line arguments (i.e. passed alongside `setup.py` when invoking, for
example `setup.py --singlegpu`) are:


| Argument | Behavior |
| --- | --- |
| clean --all | Cleans all Python and Cython artifacts, including pycache folders, .cpp files resulting of cythonization and compiled extensions. |
| --singlegpu | Option to build cuML without multiGPU algorithms. Removes dependency on nccl and ucxx. |


### RAFT Integration in cuml.raft

RAFT's Python and Cython is located in the [RAFT repository](https://github.com/rapidsai/raft/python). It was designed to be included in projects as opposed to be distributed by itself, so at build time, **setup.py creates a symlink from cuML, located in `/python/cuml/raft/` to the Python folder of RAFT**.

For developers that need to modify RAFT code, please refer to the [RAFT Developer Guide](https://github.com/rapidsai/raft/blob/release/26.02/docs/source/build.md) for recommendations.

To configure RAFT at build time:

1. If the environment variable `RAFT_PATH` points to the RAFT repo, then that will be used.
2. If there is a libcuml build folder that has cloned RAFT already, setup.py will use that RAFT. Location of this can be configured with the environment variable CUML_BUILD_PATH.
3. If none of the above happened, then setup.py will clone RAFT and use it directly.

The RAFT Python code gets included in the cuML build and distributable artifacts as if it was always present in the folder structure of cuML.

### Build Requirements

cuML's convenience [development yaml files](https://github.com/rapidsai/cuml/tree/release/26.02/environments) includes all dependencies required to build cuML.

To build cuML's Python package, the following dependencies are required:

- cudatoolkit version corresponding to system CUDA toolkit
- cython >=3.0.0
- numpy
- cmake >=3.30.4
- cudf version matching the cuML version
- libcuml version matching the cuML version
- libcuml={{ version }}
- cupy >=13.6.0
- joblib >=0.11

Packages required for multigpu algorithms*:
- ucxx version matching the cuML version
- dask-cudf version matching the cuML version
- nccl>=2.5
- rapids-dask-dependency version matching the cuML version

* this can be avoided with `--singlegpu` argument flag.


### Python Tests

Python tests are based on the pytest library. To run them, from the `path_to_cuml/python/` folder, simply type `pytest`.
