File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ cuda-core: Pythonic access to CUDA core functionalities
3
3
*******************************************************
4
4
5
5
`cuda.core <https://nvidia.github.io/cuda-python/cuda-core/ >`_ bridges Python's productivity
6
- with CUDA's performance through intuitive, pythonic APIs.
7
- The mission is to provide users full access to all of the CUDA features in Python.
6
+ with CUDA's performance through intuitive and pythonic APIs.
7
+ The mission is to provide users full access to all of the core CUDA features in Python,
8
+ such as runtime control, compiler and linker.
8
9
9
10
* `Repository <https://github.com/NVIDIA/cuda-python/tree/main/cuda_core >`_
10
11
* `Documentation <https://nvidia.github.io/cuda-python/cuda-core/ >`_
Original file line number Diff line number Diff line change @@ -44,10 +44,13 @@ classifiers = [
44
44
]
45
45
dependencies = [
46
46
" numpy" ,
47
- # TODO: change this once cuda-bindings is packaged, see NVIDIA/cuda-python#105
48
- " cuda-python <13" ,
49
47
]
50
48
49
+ [project .optional-dependencies ]
50
+ # TODO: change this once cuda-bindings is packaged, see NVIDIA/cuda-python#105
51
+ cu11 = [" cuda-python==11.8.*" ]
52
+ cu12 = [" cuda-python==12.*" ]
53
+
51
54
[project .urls ]
52
55
homepage = " https://nvidia.github.io/cuda-python/"
53
56
documentation = " https://nvidia.github.io/cuda-python/cuda-core/"
@@ -57,7 +60,6 @@ issues = "https://github.com/NVIDIA/cuda-python/issues/"
57
60
[tool .setuptools .packages .find ]
58
61
include = [" cuda.core*" ]
59
62
60
-
61
63
[tool .setuptools .dynamic ]
62
64
version = { attr = " cuda.core._version.__version__" }
63
65
readme = { file = [" DESCRIPTION.rst" ], content-type = " text/x-rst" }
You can’t perform that action at this time.
0 commit comments