Skip to content

Commit 9c0b757

Browse files
committed
fix installations
1 parent 24cbf0c commit 9c0b757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tilelang/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
TVM_LIBRARY_NOT_FOUND_MESSAGE = ("TVM is not installed or found in the expected path")
2121

2222
TL_ROOT = os.path.dirname(os.path.abspath(__file__))
23-
TL_LIBS = [os.path.join(i, 'lib') for i in [TL_ROOT]]
23+
TL_LIBS = [TL_ROOT, os.path.join(TL_ROOT, 'lib')]
2424
TL_LIBS = [i for i in TL_LIBS if os.path.exists(i)]
2525

2626
DEV = False

0 commit comments

Comments
 (0)