Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 321
docs: add FT build notes#1071
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
docs: add FT build notes #1071
Changes from all commits
d793d4698124ee58622ddaa097cfef0498bdb957d1355638aFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| 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.1" | ||
| __version__ = "13.0.2" |
cpcloud marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,8 @@ | ||
| .. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| .. SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE | ||
| .. _support: | ||
| ``cuda.bindings`` Support Policy | ||
| ================================ | ||
| @@ -23,9 +25,20 @@ The ``cuda.bindings`` module has the following support policy: | ||
| module could require Cython layer users to rebuild their projects and update their pinning to | ||
| this module. | ||
| Free-threading Build Support | ||
| ---------------------------- | ||
| As of cuda-bindings 13.0.2/12.9.3, wheels for the `free-threaded interpreter`_ are shipped to PyPI. | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @oleksandr-pavlyk or @kkraus14 can correct me but I think it should be fairly easy to also ship on conda-forge. Maybe we don't have to emphasize PyPI. | ||
| 1. Support for these builds is best effort, due to heavy use of `built-in | ||
| modules that are known to be thread-unsafe`_, such as ``ctypes``. | ||
| 2. For now, you are responsible for making sure that calls into ``cuda-bindings`` | ||
| libraries are thread-safe. This is subject to change. | ||
| The NVIDIA CUDA Python team reserves rights to amend the above support policy. Any major changes, | ||
| however, will be announced to the users in advance. | ||
| .. _CUDA minor version compatibility: https://docs.nvidia.com/deploy/cuda-compatibility/#minor-version-compatibility | ||
| .. _CPython EOL schedule: https://devguide.python.org/versions/ | ||
| .. _built-in modules that are known to be thread-unsafe: https://github.com/python/cpython/issues/116738 | ||
| .. _free-threaded interpreter: https://docs.python.org/3/howto/free-threading-python.html | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.