Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
cb54cf6
Add initial pathfinder compatibility checks
rwgk Apr 10, 2026
83c45fa
Update compatibility tests for system CTK paths
rwgk Apr 17, 2026
6088975
Merge branch 'main' into pathfinder_with_compatibility_checks_v0
rwgk Apr 19, 2026
7c6709c
Rename pathfinder compatibility checks module.
rwgk Apr 19, 2026
a0de5f6
Add a reusable pathfinder driver info helper.
rwgk Apr 19, 2026
91d38ff
Refine pathfinder driver info loader checks.
rwgk Apr 19, 2026
14450c1
Add parsed pathfinder driver version metadata.
rwgk Apr 19, 2026
329d952
Add a real pathfinder driver version test.
rwgk Apr 19, 2026
0bcbd23
Reduce redundant pathfinder driver info mocks.
rwgk Apr 19, 2026
f72c963
Rename the pathfinder CUDA driver version dataclass.
rwgk Apr 19, 2026
4eade17
Add a pathfinder NVML driver release version helper.
rwgk Apr 19, 2026
32e814f
Revert the pathfinder NVML driver release version helper.
rwgk Apr 19, 2026
1369c17
Clarify the pathfinder CUDA driver version naming.
rwgk Apr 19, 2026
772451b
Finalize the pathfinder CUDA driver version query API.
rwgk Apr 19, 2026
6ec081c
Add a public pathfinder driver info regression test.
rwgk Apr 19, 2026
9961248
Merge branch 'main' into pathfinder_with_compatibility_checks_v0
rwgk Apr 21, 2026
44e3ba1
Merge branch 'main' into pathfinder_driver_info
rwgk Apr 21, 2026
0c3803e
Merge branch 'pathfinder_driver_info' into pathfinder_with_compatibil…
rwgk Apr 21, 2026
0eab1ab
Use the shared pathfinder driver query in compatibility checks.
rwgk Apr 21, 2026
a450104
Remove pathfinder driver info public re-exports
rwgk Apr 21, 2026
917cda6
Merge branch 'main' into pathfinder_driver_info
rwgk Apr 21, 2026
9340619
Merge remote-tracking branch 'upstream/main' into pathfinder_with_com…
rwgk Apr 21, 2026
f952144
Privatize pathfinder driver info API in compatibility branch
rwgk Apr 21, 2026
5210855
Merge branch 'pathfinder_driver_info' into pathfinder_with_compatibil…
rwgk Apr 21, 2026
d02e8d5
Merge branch 'main' into pathfinder_driver_info
rwgk Apr 23, 2026
0099c06
Merge branch 'pathfinder_driver_info' into pathfinder_with_compatibil…
rwgk Apr 23, 2026
6a6ef09
Use DriverCudaVersion throughout pathfinder compatibility checks.
rwgk Apr 24, 2026
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
9 changes: 9 additions & 0 deletions cuda_pathfinder/cuda/pathfinder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
find_nvidia_binary_utility as find_nvidia_binary_utility,
)
from cuda.pathfinder._binaries.supported_nvidia_binaries import SUPPORTED_BINARIES as _SUPPORTED_BINARIES
from cuda.pathfinder._compatibility_checks import (
CompatibilityCheckError as CompatibilityCheckError,
)
from cuda.pathfinder._compatibility_checks import (
CompatibilityInsufficientMetadataError as CompatibilityInsufficientMetadataError,
)
from cuda.pathfinder._compatibility_checks import (
WithCompatibilityChecks as WithCompatibilityChecks,
)
from cuda.pathfinder._dynamic_libs.load_dl_common import (
DynamicLibNotAvailableError as DynamicLibNotAvailableError,
)
Expand Down
Loading