Skip to content

Commit dd44cff

Browse files
committed
Fix mathdx site_packages_windows path for cu13
The nvidia-libmathdx-cu13 wheel installs mathdx64_0.dll under nvidia/cu13/bin, not nvidia/cu13/bin/x86_64. The x86_64 subdirectory is used by cuda-toolkit CTK packages, but nvidia-libmathdx is packaged separately and follows the flat layout (matching nvidia-cudss and the cu12 mathdx wheel). Made-with: Cursor
1 parent 65b26ff commit dd44cff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cuda_pathfinder/cuda/pathfinder/_dynamic_libs/descriptor_catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ class DescriptorSpec:
314314
linux_sonames=("libmathdx.so.0",),
315315
windows_dlls=("mathdx64_0.dll",),
316316
site_packages_linux=("nvidia/cu13/lib", "nvidia/cu12/lib"),
317-
site_packages_windows=("nvidia/cu13/bin/x86_64", "nvidia/cu12/bin"),
317+
site_packages_windows=("nvidia/cu13/bin", "nvidia/cu12/bin"),
318318
dependencies=("nvrtc",),
319319
),
320320
DescriptorSpec(

0 commit comments

Comments
 (0)