Skip to content

Commit 85dc1d7

Browse files
authored
Clear ext_lib_dll_names for macOS platform (#18304)
Removed external library DLL names for macOS. found during tile-ai/tilelang#799 cc @LeiWang1999
1 parent 8f658cc commit 85dc1d7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

python/tvm/libinfo.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,7 @@ def find_lib_path(name=None, search_path=None, optional=False):
130130
elif sys.platform.startswith("darwin"):
131131
lib_dll_names = ["libtvm.dylib"]
132132
runtime_dll_names = ["libtvm_runtime.dylib"]
133-
ext_lib_dll_names = [
134-
"3rdparty/cutlass_fpA_intB_gemm/cutlass_kernels/libfpA_intB_gemm.dylib",
135-
"3rdparty/libflash_attn/src/libflash_attn.dylib",
136-
]
133+
ext_lib_dll_names = []
137134
else:
138135
lib_dll_names = ["libtvm.so"]
139136
runtime_dll_names = ["libtvm_runtime.so"]

0 commit comments

Comments
 (0)