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
4 changes: 4 additions & 0 deletions cuda_bindings/docs/nv-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "latest",
"url": "https://nvidia.github.io/cuda-python/cuda-bindings/latest/"
},
{
"version": "13.3.1",
"url": "https://nvidia.github.io/cuda-python/cuda-bindings/13.3.1/"
},
{
"version": "13.3.0",
"url": "https://nvidia.github.io/cuda-python/cuda-bindings/13.3.0/"
Expand Down
26 changes: 26 additions & 0 deletions cuda_bindings/docs/source/release/13.3.1-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.. SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE

.. module:: cuda.bindings

``cuda-bindings`` 13.3.1 Release notes
======================================

Bugfixes
--------

* Restored the ``CUcheckpointRestoreArgs`` and ``CUcheckpointRestoreArgs_st``
driver bindings for CUDA 13.3. CUDA 13.3 changed the checkpoint restore
argument layout in a way that caused header parsing to omit the restore
argument struct and typedef during generation.
(`PR #2144 <https://github.com/NVIDIA/cuda-python/pull/2144>`_)

* Fixed generated CUDA 13.3 driver API documentation for checkpoint restore
arguments and related references.
(`PR #2144 <https://github.com/NVIDIA/cuda-python/pull/2144>`_)

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``.
* ``nvml.system_get_process_name`` on WSL can return incorrect values. To work around this, set the locale to "C" before calling ``nvml.device_get_compute_running_processes_v3`` (which sets the process names) and before calling ``nvml.system_get_process_name``. ``cuda_core`` does this automatically, but users of the raw NVML API will need to do this manually.
4 changes: 4 additions & 0 deletions cuda_python/docs/nv-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "latest",
"url": "https://nvidia.github.io/cuda-python/latest/"
},
{
"version": "13.3.1",
"url": "https://nvidia.github.io/cuda-python/13.3.1/"
},
{
"version": "13.3.0",
"url": "https://nvidia.github.io/cuda-python/13.3.0/"
Expand Down
1 change: 1 addition & 0 deletions cuda_python/docs/source/release/13.3.0-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Included components
-------------------

* `cuda.bindings 13.3.0 <https://nvidia.github.io/cuda-python/cuda-bindings/13.3.0/release/13.3.0-notes.html>`_
* `cuda.core 1.0.1 <https://nvidia.github.io/cuda-python/cuda-core/1.0.1/release/1.0.1-notes.html>`_
* `cuda.pathfinder 1.5.5 <https://nvidia.github.io/cuda-python/cuda-pathfinder/1.5.5/release/1.5.5-notes.html>`_

Known issues
Expand Down
17 changes: 17 additions & 0 deletions cuda_python/docs/source/release/13.3.1-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.. SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE

CUDA Python 13.3.1 Release notes
================================

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

* `cuda.bindings 13.3.1 <https://nvidia.github.io/cuda-python/cuda-bindings/13.3.1/release/13.3.1-notes.html>`_
Comment thread
leofang marked this conversation as resolved.
* `cuda.core 1.0.1 <https://nvidia.github.io/cuda-python/cuda-core/1.0.1/release/1.0.1-notes.html>`_
* `cuda.pathfinder 1.5.5 <https://nvidia.github.io/cuda-python/cuda-pathfinder/1.5.5/release/1.5.5-notes.html>`_

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``.
Loading