cuml-cu12 25.2.0__tar.gz → 25.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cuml-cu12
|
|
3
|
-
Version: 25.
|
|
3
|
+
Version: 25.4.0
|
|
4
4
|
Summary: cuML - RAPIDS ML Algorithms
|
|
5
5
|
Author: NVIDIA Corporation
|
|
6
|
-
License: Apache
|
|
6
|
+
License: Apache-2.0
|
|
7
7
|
Classifier: Intended Audience :: Developers
|
|
8
8
|
Classifier: Programming Language :: Python
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -13,13 +13,13 @@ Project-URL: Homepage, https://github.com/rapidsai/cuml
|
|
|
13
13
|
Project-URL: Documentation, https://docs.rapids.ai/api/cuml/stable/
|
|
14
14
|
Requires-Python: >=3.10
|
|
15
15
|
Requires-Dist: cuda-python<13.0a0,>=12.6.2
|
|
16
|
-
Requires-Dist: cudf-cu12==25.
|
|
16
|
+
Requires-Dist: cudf-cu12==25.4.*
|
|
17
17
|
Requires-Dist: cupy-cuda12x>=12.0.0
|
|
18
|
-
Requires-Dist: cuvs-cu12==25.
|
|
19
|
-
Requires-Dist: dask-cuda==25.
|
|
20
|
-
Requires-Dist: dask-cudf-cu12==25.
|
|
18
|
+
Requires-Dist: cuvs-cu12==25.4.*
|
|
19
|
+
Requires-Dist: dask-cuda==25.4.*
|
|
20
|
+
Requires-Dist: dask-cudf-cu12==25.4.*
|
|
21
21
|
Requires-Dist: joblib>=0.11
|
|
22
|
-
Requires-Dist: libcuml-cu12==25.
|
|
22
|
+
Requires-Dist: libcuml-cu12==25.4.*
|
|
23
23
|
Requires-Dist: numba<0.61.0a0,>=0.59.1
|
|
24
24
|
Requires-Dist: numpy<3.0a0,>=1.23
|
|
25
25
|
Requires-Dist: nvidia-cublas-cu12
|
|
@@ -28,12 +28,13 @@ Requires-Dist: nvidia-curand-cu12
|
|
|
28
28
|
Requires-Dist: nvidia-cusolver-cu12
|
|
29
29
|
Requires-Dist: nvidia-cusparse-cu12
|
|
30
30
|
Requires-Dist: packaging
|
|
31
|
-
Requires-Dist: pylibraft-cu12==25.
|
|
32
|
-
Requires-Dist: raft-dask-cu12==25.
|
|
33
|
-
Requires-Dist: rapids-dask-dependency==25.
|
|
34
|
-
Requires-Dist: rmm-cu12==25.
|
|
31
|
+
Requires-Dist: pylibraft-cu12==25.4.*
|
|
32
|
+
Requires-Dist: raft-dask-cu12==25.4.*
|
|
33
|
+
Requires-Dist: rapids-dask-dependency==25.4.*
|
|
34
|
+
Requires-Dist: rmm-cu12==25.4.*
|
|
35
35
|
Requires-Dist: scipy>=1.8.0
|
|
36
36
|
Requires-Dist: treelite==4.4.1
|
|
37
|
+
Provides-Extra: test
|
|
37
38
|
Requires-Dist: certifi; extra == "test"
|
|
38
39
|
Requires-Dist: cython>=3.0.0; extra == "test"
|
|
39
40
|
Requires-Dist: dask-ml; extra == "test"
|
|
@@ -51,8 +52,7 @@ Requires-Dist: scikit-learn==1.5.*; extra == "test"
|
|
|
51
52
|
Requires-Dist: seaborn; extra == "test"
|
|
52
53
|
Requires-Dist: statsmodels; extra == "test"
|
|
53
54
|
Requires-Dist: umap-learn==0.5.6; extra == "test"
|
|
54
|
-
Requires-Dist: xgboost
|
|
55
|
-
Provides-Extra: test
|
|
55
|
+
Requires-Dist: xgboost<3.0.0,>=2.1.0; extra == "test"
|
|
56
56
|
Description-Content-Type: text/markdown
|
|
57
57
|
|
|
58
58
|
# cuML Python Package
|
|
@@ -95,7 +95,7 @@ example `setup.py --singlegpu`) are:
|
|
|
95
95
|
|
|
96
96
|
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**.
|
|
97
97
|
|
|
98
|
-
For developers that need to modify RAFT code, please refer to the [RAFT Developer Guide](https://github.com/rapidsai/raft/blob/branch-25.
|
|
98
|
+
For developers that need to modify RAFT code, please refer to the [RAFT Developer Guide](https://github.com/rapidsai/raft/blob/branch-25.04/docs/source/build.md) for recommendations.
|
|
99
99
|
|
|
100
100
|
To configure RAFT at build time:
|
|
101
101
|
|
|
@@ -107,7 +107,7 @@ The RAFT Python code gets included in the cuML build and distributable artifacts
|
|
|
107
107
|
|
|
108
108
|
### Build Requirements
|
|
109
109
|
|
|
110
|
-
cuML's convenience [development yaml files](https://github.com/rapidsai/cuml/tree/branch-25.
|
|
110
|
+
cuML's convenience [development yaml files](https://github.com/rapidsai/cuml/tree/branch-25.04/environments) includes all dependencies required to build cuML.
|
|
111
111
|
|
|
112
112
|
To build cuML's Python package, the following dependencies are required:
|
|
113
113
|
|
|
File without changes
|