diff --git a/cuda_bindings/docs/nv-versions.json b/cuda_bindings/docs/nv-versions.json index 9ce7781b84..f5795e15f6 100644 --- a/cuda_bindings/docs/nv-versions.json +++ b/cuda_bindings/docs/nv-versions.json @@ -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/" diff --git a/cuda_bindings/docs/source/release/13.3.1-notes.rst b/cuda_bindings/docs/source/release/13.3.1-notes.rst new file mode 100644 index 0000000000..c5a629f443 --- /dev/null +++ b/cuda_bindings/docs/source/release/13.3.1-notes.rst @@ -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 `_) + +* Fixed generated CUDA 13.3 driver API documentation for checkpoint restore + arguments and related references. + (`PR #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. diff --git a/cuda_python/docs/nv-versions.json b/cuda_python/docs/nv-versions.json index 1b35c844a1..0d0772ccf4 100644 --- a/cuda_python/docs/nv-versions.json +++ b/cuda_python/docs/nv-versions.json @@ -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/" diff --git a/cuda_python/docs/source/release/13.3.0-notes.rst b/cuda_python/docs/source/release/13.3.0-notes.rst index 8861d331a1..38d35283b8 100644 --- a/cuda_python/docs/source/release/13.3.0-notes.rst +++ b/cuda_python/docs/source/release/13.3.0-notes.rst @@ -8,6 +8,7 @@ Included components ------------------- * `cuda.bindings 13.3.0 `_ +* `cuda.core 1.0.1 `_ * `cuda.pathfinder 1.5.5 `_ Known issues diff --git a/cuda_python/docs/source/release/13.3.1-notes.rst b/cuda_python/docs/source/release/13.3.1-notes.rst new file mode 100644 index 0000000000..789ae0ad0f --- /dev/null +++ b/cuda_python/docs/source/release/13.3.1-notes.rst @@ -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 `_ +* `cuda.core 1.0.1 `_ +* `cuda.pathfinder 1.5.5 `_ + +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``.