Skip to content

Commit f758357

Browse files
Copilotleofang
andauthored
DOC: Drop all mentions of CUDA 11 from installation guides and support policies (#902)
* Initial plan * Update installation guides and support policies to cover CUDA 12/13 instead of 11/12 Co-authored-by: leofang <5534781+leofang@users.noreply.github.com> * Update CUDA 13 driver requirements and add CUDA 11 deprecation note Co-authored-by: leofang <5534781+leofang@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: leofang <5534781+leofang@users.noreply.github.com>
1 parent 17e09bf commit f758357

3 files changed

Lines changed: 11 additions & 10 deletions

File tree

cuda_bindings/docs/source/support.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The ``cuda.bindings`` module has the following support policy:
1010
third number in the version string), however, is reserved to reflect Python-only changes and
1111
is out of sync with the Toolkit patch version.
1212
2. The module is actively maintained to support the latest CUDA major version and its prior major
13-
version. For example, as of writing the bindings for CUDA 11 & 12 are maintained. Any fix in the
13+
version. For example, as of writing the bindings for CUDA 12 & 13 are maintained. Any fix in the
1414
latest bindings would be backported to the prior major version.
1515
3. The module supports `CUDA minor version compatibility`_, meaning that ``cuda.bindings`` 12.x
1616
supports any Toolkit 12.y. (Whether or not a binding API would actually correctly function

cuda_core/docs/source/install.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ dependencies are as follows:
1414
:header-rows: 1
1515

1616
* -
17-
- CUDA 11
1817
- CUDA 12
18+
- CUDA 13
1919
* - CUDA Toolkit\ [#f1]_
20-
- 11.2 - 11.8
2120
- 12.x
21+
- 13.x
2222
* - Driver
23-
- 450.80.02+ (Linux), 452.39+ (Windows)
2423
- 525.60.13+ (Linux), 527.41+ (Windows)
24+
- 580.65+ (Linux), 580.88+ (Windows)
2525

2626
.. [#f1] Including ``cuda-python``.
2727
@@ -31,27 +31,27 @@ dependencies are as follows:
3131
Installing from PyPI
3232
--------------------
3333

34-
``cuda.core`` works with ``cuda.bindings`` (part of ``cuda-python``) 11 or 12. Test dependencies now use the ``cuda-toolkit`` metapackage for improved dependency resolution. For example with CUDA 12:
34+
``cuda.core`` works with ``cuda.bindings`` (part of ``cuda-python``) 12 or 13. Test dependencies now use the ``cuda-toolkit`` metapackage for improved dependency resolution. For example with CUDA 12:
3535

3636
.. code-block:: console
3737
3838
$ pip install cuda-core[cu12]
3939
40-
and likewise use ``[cu11]`` for CUDA 11, or ``[cu13]`` for CUDA 13.
40+
and likewise use ``[cu13]`` for CUDA 13.
4141

4242
Note that using ``cuda.core`` with NVRTC installed from PyPI via ``pip install`` requires
43-
``cuda.bindings`` 12.8.0+ or 11.8.6+. Likewise, with nvJitLink it requires 12.8.0+.
43+
``cuda.bindings`` 12.8.0+. Likewise, with nvJitLink it requires 12.8.0+.
4444

4545
Installing from Conda (conda-forge)
4646
-----------------------------------
4747

48-
Same as above, ``cuda.core`` can be installed in a CUDA 11 or 12 environment. For example with CUDA 12:
48+
Same as above, ``cuda.core`` can be installed in a CUDA 12 or 13 environment. For example with CUDA 12:
4949

5050
.. code-block:: console
5151
5252
$ conda install -c conda-forge cuda-core cuda-version=12
5353
54-
and likewise use ``cuda-version=11`` for CUDA 11.
54+
and likewise use ``cuda-version=13`` for CUDA 13.
5555

5656
Note that to use ``cuda.core`` with nvJitLink installed from conda-forge requires ``cuda.bindings`` 12.8.0+.
5757

@@ -64,4 +64,4 @@ Installing from Source
6464
$ cd cuda-python/cuda_core
6565
$ pip install .
6666
67-
``cuda-bindings`` 11.x or 12.x is a required dependency.
67+
``cuda-bindings`` 12.x or 13.x is a required dependency.

cuda_core/docs/source/release/0.X.Y-notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Highlights
1818
Breaking Changes
1919
----------------
2020

21+
- **CUDA 11 support dropped**: CUDA 11 support is no longer tested and it may or may not work with cuda.bindings and CTK 11.x. Users are encouraged to migrate to CUDA 12.x or 13.x.
2122
- **LaunchConfig grid parameter interpretation**: When :attr:`LaunchConfig.cluster` is specified, the :attr:`LaunchConfig.grid` parameter now correctly represents the number of clusters instead of blocks. Previously, the grid parameter was incorrectly interpreted as blocks, causing a mismatch with the expected C++ behavior. This change ensures that ``LaunchConfig(grid=4, cluster=2, block=32)`` correctly produces 4 clusters × 2 blocks/cluster = 8 total blocks, matching the C++ equivalent ``cudax::make_hierarchy(cudax::grid_dims(4), cudax::cluster_dims(2), cudax::block_dims(32))``.
2223
- When :class:`Buffer` is closed, :attr:`Buffer.handle` is now set to ``None``. It was previously set to ``0`` by accident.
2324

0 commit comments

Comments
 (0)