We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03cddf2 commit 0ab6939Copy full SHA for 0ab6939
numba_cuda/numba/cuda/cuda_paths.py
@@ -523,11 +523,11 @@ def _get_nvvm():
523
except pathfinder.DynamicLibNotFoundError:
524
nvrtc = _get_nvrtc()
525
path = pathlib.Path(nvrtc.abs_path)
526
- nvvm = path.parents[1] / "nvvm" / "lib64" / "libnvvm.so"
+ nvvm = path.parents[3] / "nvvm" / "lib64" / "libnvvm.so"
527
528
if nvvm.exists():
529
dl = pathfinder._dynamic_libs.load_nvidia_dynamic_lib.load_with_abs_path(
530
- "nvvm", path, "system-search"
+ "nvvm", nvvm, "system-search"
531
)
532
return dl
533
else:
0 commit comments