Skip to content

Commit a973c27

Browse files
committed
make it clear cuda-pathfinder is installed as part of cuda-python
1 parent 2400e46 commit a973c27

4 files changed

Lines changed: 4 additions & 0 deletions

File tree

cuda_python/docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ multiple components:
99

1010
- `cuda.core`_: Pythonic access to CUDA runtime and other core functionalities
1111
- `cuda.bindings`_: Low-level Python bindings to CUDA C APIs
12+
- `cuda.pathfinder`: Utilities for locating CUDA components installed in the user's Python virtual environment
1213
- `cuda.cccl.cooperative`_: A Python module providing CCCL's reusable block-wide and warp-wide *device* primitives for use within Numba CUDA kernels
1314
- `cuda.cccl.parallel`_: A Python module for easy access to CCCL's highly efficient and customizable parallel algorithms, like ``sort``, ``scan``, ``reduce``, ``transform``, etc, that are callable on the *host*
1415
- `numba.cuda`_: Numba's target for CUDA GPU programming by directly compiling a restricted subset of Python code into CUDA kernels and device functions following the CUDA execution model.

cuda_python/docs/source/release/12.9.1-notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Included components
1111
-------------------
1212

1313
* `cuda.bindings 12.9.1 <https://nvidia.github.io/cuda-python/cuda-bindings/latest/release/12.9.1-notes.html>`_
14+
* cuda.pathfinder 1.1.0
1415

1516

1617
Highlights

cuda_python/docs/source/release/13.0.0-notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Included components
1111
-------------------
1212

1313
* `cuda.bindings 13.0.0 <https://nvidia.github.io/cuda-python/cuda-bindings/13.0.0/release/13.0.0-notes.html>`_
14+
* cuda.pathfinder 1.1.0
1415

1516

1617
Highlights

cuda_python/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
version=version,
1818
install_requires=[
1919
f"cuda-bindings~={version}",
20+
"cuda-pathfinder~=1.1",
2021
],
2122
extras_require={
2223
"all": [f"cuda-bindings[all]~={version}"],

0 commit comments

Comments
 (0)