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 24cbf0c commit 9c0b757Copy full SHA for 9c0b757
tilelang/env.py
@@ -20,7 +20,7 @@
20
TVM_LIBRARY_NOT_FOUND_MESSAGE = ("TVM is not installed or found in the expected path")
21
22
TL_ROOT = os.path.dirname(os.path.abspath(__file__))
23
-TL_LIBS = [os.path.join(i, 'lib') for i in [TL_ROOT]]
+TL_LIBS = [TL_ROOT, os.path.join(TL_ROOT, 'lib')]
24
TL_LIBS = [i for i in TL_LIBS if os.path.exists(i)]
25
26
DEV = False
0 commit comments