Skip to content

Commit 2cbdd1b

Browse files
committed
Comments
1 parent 52805f4 commit 2cbdd1b

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

python/tvm/_ffi/libinfo.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,6 @@ def find_lib_path(name=None, search_path=None, optional=False):
9898
use_runtime = os.environ.get("TVM_USE_RUNTIME_LIB", False)
9999
dll_path = get_dll_directories()
100100

101-
manual_dll_path = os.getenv("TVM_DLL_PATH")
102-
if manual_dll_path is not None:
103-
dll_path = [manual_dll_path] + dll_path
104-
105101
if search_path is not None:
106102
if isinstance(search_path, list):
107103
dll_path = dll_path + search_path

tests/scripts/ci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def fn(tests: Optional[List[str]], interactive: bool = False, **kwargs) -> None:
379379
# Need to specify the library path manually or else TVM can't
380380
# determine which build directory to use (i.e. if there are
381381
# multiple copies of libtvm.so laying around)
382-
"TVM_DLL_PATH": str(REPO_ROOT / get_build_dir(name)),
382+
"TVM_LIBRARY_PATH": str(REPO_ROOT / get_build_dir(name)),
383383
},
384384
interactive=interactive,
385385
)

tests/scripts/task_ci_setup.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ set -o pipefail
3030
#
3131
echo "Additional setup in ${CI_IMAGE_NAME}"
3232

33+
# If these are changed also update tests/scripts/ci.py
3334
python3 -m pip install --user tlcpack-sphinx-addon==0.2.1 synr==0.6.0
3435

3536
# Rebuild standalone_crt in build/ tree. This file is not currently archived by pack_lib() in

0 commit comments

Comments
 (0)