This is an automated email from the ASF dual-hosted git repository.
zhaowu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 85dc1d7a02 Clear ext_lib_dll_names for macOS platform (#18304)
85dc1d7a02 is described below
commit 85dc1d7a02c3276accf6ff96ee95adf2f5e8b04e
Author: Yichen Yan <[email protected]>
AuthorDate: Fri Sep 12 16:46:11 2025 +0800
Clear ext_lib_dll_names for macOS platform (#18304)
Removed external library DLL names for macOS.
found during https://github.com/tile-ai/tilelang/pull/799
cc @LeiWang1999
---
python/tvm/libinfo.py | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/python/tvm/libinfo.py b/python/tvm/libinfo.py
index 69429179fc..b8fa9ec91a 100644
--- a/python/tvm/libinfo.py
+++ b/python/tvm/libinfo.py
@@ -130,10 +130,7 @@ def find_lib_path(name=None, search_path=None,
optional=False):
elif sys.platform.startswith("darwin"):
lib_dll_names = ["libtvm.dylib"]
runtime_dll_names = ["libtvm_runtime.dylib"]
- ext_lib_dll_names = [
-
"3rdparty/cutlass_fpA_intB_gemm/cutlass_kernels/libfpA_intB_gemm.dylib",
- "3rdparty/libflash_attn/src/libflash_attn.dylib",
- ]
+ ext_lib_dll_names = []
else:
lib_dll_names = ["libtvm.so"]
runtime_dll_names = ["libtvm_runtime.so"]