Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cuda_bindings/cuda/bindings/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE

__version__ = "13.0.1a0"
__version__ = "13.0.1"
2 changes: 2 additions & 0 deletions cuda_bindings/docs/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ Release Notes
.. toctree::
:maxdepth: 3

13.0.1 <release/13.0.1-notes.rst>
13.0.0 <release/13.0.0-notes.rst>
12.9.2 <release/12.9.2-notes.rst>
12.9.1 <release/12.9.1-notes.rst>
12.9.0 <release/12.9.0-notes.rst>
12.8.0 <release/12.8.0-notes.md>
Expand Down
21 changes: 21 additions & 0 deletions cuda_bindings/docs/source/release/12.9.2-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE

.. module:: cuda.bindings

``cuda-bindings`` 12.9.2 Release notes
======================================

Released on Aug 18, 2025


Highlights
----------

* Make populating the internal symbol table thread-safe.


Known issues
------------

* Updating from older versions (v12.6.2.post1 and below) via ``pip install -U cuda-python`` might not work. Please do a clean re-installation by uninstalling ``pip uninstall -y cuda-python`` followed by installing ``pip install cuda-python``.
21 changes: 21 additions & 0 deletions cuda_bindings/docs/source/release/13.0.1-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE

.. module:: cuda.bindings

``cuda-bindings`` 13.0.1 Release notes
======================================

Released on Aug 18, 2025


Highlights
----------

* Make populating the internal symbol table thread-safe.


Known issues
------------

* Updating from older versions (v12.6.2.post1 and below) via ``pip install -U cuda-python`` might not work. Please do a clean re-installation by uninstalling ``pip uninstall -y cuda-python`` followed by installing ``pip install cuda-python``.
1 change: 1 addition & 0 deletions cuda_bindings/docs/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"latest" : "latest",
"13.0.1" : "13.0.1",
"13.0.0" : "13.0.0",
"12.9.0" : "12.9.0",
"12.8.0" : "12.8.0",
Expand Down
2 changes: 1 addition & 1 deletion cuda_python/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ multiple components:

- `cuda.core`_: Pythonic access to CUDA runtime and other core functionalities
- `cuda.bindings`_: Low-level Python bindings to CUDA C APIs
- `cuda.pathfinder_`: Utilities for locating CUDA components installed in the user's Python environment
- `cuda.pathfinder`_: Utilities for locating CUDA components installed in the user's Python environment
- `cuda.cccl.cooperative`_: A Python module providing CCCL's reusable block-wide and warp-wide *device* primitives for use within Numba CUDA kernels
- `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*
- `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.
Expand Down
2 changes: 2 additions & 0 deletions cuda_python/docs/source/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
maxdepth: 3
---

13.0.1 <release/13.0.1-notes>
13.0.0 <release/13.0.0-notes>
12.9.2 <release/12.9.2-notes>
12.9.1 <release/12.9.1-notes>
12.9.0 <release/12.9.0-notes>
12.8.0 <release/12.8.0-notes>
Expand Down
20 changes: 20 additions & 0 deletions cuda_python/docs/source/release/12.9.2-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE

CUDA Python 12.9.2 Release notes
================================

Released on Aug 18, 2025.


Included components
-------------------

* `cuda.bindings 12.9.2 <https://nvidia.github.io/cuda-python/cuda-bindings/latest/release/12.9.2-notes.html>`_
* `cuda.pathfinder 1.1.0 <https://github.com/NVIDIA/cuda-python/blob/main/cuda_pathfinder/cuda/pathfinder/README.md>`_


Known issues
------------

* Updating from older versions (v12.6.2.post1 and below) via ``pip install -U cuda-python`` might not work. Please do a clean re-installation by uninstalling ``pip uninstall -y cuda-python`` followed by installing ``pip install cuda-python``.
20 changes: 20 additions & 0 deletions cuda_python/docs/source/release/13.0.1-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE

CUDA Python 13.0.1 Release notes
================================

Released on Aug 18, 2025.


Included components
-------------------

* `cuda.bindings 13.0.1 <https://nvidia.github.io/cuda-python/cuda-bindings/13.0.1/release/13.0.1-notes.html>`_
* `cuda.pathfinder 1.1.0 <https://github.com/NVIDIA/cuda-python/blob/main/cuda_pathfinder/cuda/pathfinder/README.md>`_


Known issues
------------

* Updating from older versions (v12.6.2.post1 and below) via ``pip install -U cuda-python`` might not work. Please do a clean re-installation by uninstalling ``pip uninstall -y cuda-python`` followed by installing ``pip install cuda-python``.
1 change: 1 addition & 0 deletions cuda_python/docs/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"latest" : "latest",
"13.0.1" : "13.0.1",
"13.0.0" : "13.0.0",
"12.9.0" : "12.9.0",
"12.8.0" : "12.8.0",
Expand Down