Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 321
Add cuTENSOR support & bug fixes discovered while working on conda testing#1194
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.
Changes from all commits
2d1d8fe986a83f05833931d1f534e0a4ca625dd364cdab9696d490f528e7206d36a62d0734ac73b156b77aa66799bfef5f3a44b6a0d71a85b079c8490ed27a9671b244d5a41a75d887403e10b143e81b4File 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) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| __version__ = "1.3.1" | ||
| __version__ = "1.3.2" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -18,4 +18,5 @@ and experimental APIs for locating NVIDIA C/C++ header directories. | ||
| DynamicLibNotFoundError | ||
| SUPPORTED_HEADERS_CTK | ||
| SUPPORTED_HEADERS_NON_CTK | ||
leofang marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| find_nvidia_header_directory | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| .. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| .. SPDX-License-Identifier: Apache-2.0 | ||
| .. py:currentmodule:: cuda.pathfinder | ||
| ``cuda-pathfinder`` 1.3.2 Release notes | ||
| ======================================= | ||
| Released on Oct 29, 2025 | ||
rwgk marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| Highlights | ||
| ---------- | ||
| * Add cuTENSOR support & bug fixes discovered while working on conda testing | ||
| (`PR #1194 <https://github.com/NVIDIA/cuda-python/pull/1194>`_) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| import functools | ||
| import importlib.metadata | ||
| import re | ||
| @functools.cache | ||
| def have_distribution(name_pattern: str) -> bool: | ||
| re_name_pattern = re.compile(name_pattern) | ||
rwgk marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| return any( | ||
| re_name_pattern.match(dist.metadata["Name"]) | ||
| for dist in importlib.metadata.distributions() | ||
rwgk marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| if "Name" in dist.metadata | ||
| ) | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.