Skip to content

Commit 4d0b5a6

Browse files
gmarkallshwina
andauthored
[DOCS] Clarify that cooperative is for device, parallel for host (#522)
* [DOCS] Clarify that cooperative is for device, parallel for host * Update README.md * Remove dot at end * Use language from README in cuda-python docs --------- Co-authored-by: Ashwin Srinath <[email protected]>
1 parent 7c0f4c5 commit 4d0b5a6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ CUDA Python is the home for accessing NVIDIA’s CUDA platform from Python. It c
44

55
* [cuda.core](https://nvidia.github.io/cuda-python/cuda-core/latest): Pythonic access to CUDA Runtime and other core functionalities
66
* [cuda.bindings](https://nvidia.github.io/cuda-python/cuda-bindings/latest): Low-level Python bindings to CUDA C APIs
7-
* [cuda.cooperative](https://nvidia.github.io/cccl/cuda_cooperative/): Pythonic exposure of CUB cooperative algorithms
8-
* [cuda.parallel](https://nvidia.github.io/cccl/cuda_parallel/): Pythonic exposure of Thrust parallel algorithms
7+
* [cuda.cooperative](https://nvidia.github.io/cccl/cuda_cooperative/): A Python package for easy access to highly efficient and customizable parallel algorithms, like `sort`, `scan`, `reduce`, `transform`, etc.
8+
* [cuda.parallel](https://nvidia.github.io/cccl/cuda_parallel/): A Python package providing CUB's reusable block-wide and warp-wide primitives for use within Numba CUDA kernels
99

1010
For access to NVIDIA CPU & GPU Math Libraries, please refer to [nvmath-python](https://docs.nvidia.com/cuda/nvmath-python/latest).
1111

cuda_python/docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ multiple components:
66

77
- `cuda.core`_: Pythonic access to CUDA runtime and other core functionalities
88
- `cuda.bindings`_: Low-level Python bindings to CUDA C APIs
9-
- `cuda.cooperative`_: Pythonic exposure of CUB cooperative algorithms
10-
- `cuda.parallel`_: Pythonic exposure of Thrust parallel algorithms
9+
- `cuda.cooperative`_: A Python package for easy access to highly efficient and customizable parallel algorithms, like `sort`, `scan`, `reduce`, `transform`, etc.
10+
- `cuda.parallel`_: A Python package providing CUB's reusable block-wide and warp-wide primitives for use within Numba CUDA kernels
1111

1212
For access to NVIDIA CPU & GPU Math Libraries, please refer to `nvmath-python`_.
1313

0 commit comments

Comments
 (0)