Skip to content

Bump pathfinder to v1.1.0 #805

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

Merged
merged 3 commits into from
Aug 6, 2025
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
1 change: 1 addition & 0 deletions cuda_bindings/docs/source/release/12.9.1-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Miscellaneous
* Common CUDA objects such as :class:`~runtime.cudaStream_t` now compare equal if the underlying address is the same.
* Add a binding to ``nvvmGetErrorString()``.
* Build the bindings with Cython profile hooks disabled.
* The internal pathfinder module is now isolated to a standalone package ``cuda-pathfinder`` and made as a required dependency.


Known issues
Expand Down
1 change: 1 addition & 0 deletions cuda_bindings/docs/source/release/13.0.0-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Miscellaneous
* Common CUDA objects such as :class:`~runtime.cudaStream_t` now compare equal if the underlying address is the same.
* Add a binding to ``nvvmGetErrorString()``.
* Build the bindings with Cython profile hooks disabled.
* The internal pathfinder module is now isolated to a standalone package ``cuda-pathfinder`` and made as a required dependency.


Known issues
Expand Down
2 changes: 1 addition & 1 deletion cuda_bindings/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dynamic = [
"readme",
]
dependencies = [
"cuda-pathfinder ~= 1.0",
"cuda-pathfinder ~=1.1",
"pywin32; sys_platform == 'win32'",
]

Expand Down
2 changes: 1 addition & 1 deletion cuda_pathfinder/cuda/pathfinder/_version.py
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.0.0"
__version__ = "1.1.0"
Loading