Skip to content

Commit eaeb836

Browse files
committed
Rename _path_finder_utils → _path_finder
1 parent cc6113c commit eaeb836

File tree

7 files changed

+4
-4
lines changed

7 files changed

+4
-4
lines changed

cuda_bindings/cuda/bindings/path_finder.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
44

5-
from cuda.bindings._path_finder_utils.cuda_paths import (
5+
from cuda.bindings._path_finder.cuda_paths import (
66
get_conda_ctk,
77
get_conda_include_dir,
88
get_cuda_home,
@@ -16,8 +16,8 @@
1616
get_nvidia_static_cudalib_ctk,
1717
get_system_ctk,
1818
)
19-
from cuda.bindings._path_finder_utils.find_nvidia_dynamic_library import find_nvidia_dynamic_library
20-
from cuda.bindings._path_finder_utils.load_nvidia_dynamic_library import load_nvidia_dynamic_library
19+
from cuda.bindings._path_finder.find_nvidia_dynamic_library import find_nvidia_dynamic_library
20+
from cuda.bindings._path_finder.load_nvidia_dynamic_library import load_nvidia_dynamic_library
2121

2222
__all__ = [
2323
"find_nvidia_dynamic_library",

cuda_bindings/tests/test_sys_path_find_sub_dirs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import pytest
44

5-
from cuda.bindings._path_finder_utils.sys_path_find_sub_dirs import _impl
5+
from cuda.bindings._path_finder.sys_path_find_sub_dirs import _impl
66

77

88
@pytest.fixture

0 commit comments

Comments
 (0)