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
20 changes: 20 additions & 0 deletions cuda_bindings/docs/source/release/13.4.0-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
.. SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: Apache-2.0

.. module:: cuda.bindings

``cuda-bindings`` 13.4.0 Release notes
======================================

Deprecation Notices
-------------------

* Support for using ``cuda-bindings`` with Python 3.10 is deprecated and will be
removed in a future version. Python 3.10 reaches end of life in October 2026
per the `CPython support cycle <https://devguide.python.org/versions/>`_.

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.
14 changes: 14 additions & 0 deletions cuda_core/docs/source/release/1.2.0-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.. SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: Apache-2.0

.. currentmodule:: cuda.core

``cuda.core`` 1.2.0 Release Notes
==================================

Deprecation Notices
-------------------

* Support for using ``cuda-core`` with Python 3.10 is deprecated and will be
removed in a future version. Python 3.10 reaches end of life in October 2026
per the `CPython support cycle <https://devguide.python.org/versions/>`_.
17 changes: 17 additions & 0 deletions cuda_python/docs/source/release/13.4.0-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: Apache-2.0

CUDA Python 13.4.0 Release notes
=================================

Deprecation Notices
-------------------

* Support for using ``cuda-python`` with Python 3.10 is deprecated and will be
removed in a future version. Python 3.10 reaches end of life in October 2026
per the `CPython support cycle <https://devguide.python.org/versions/>`_.

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