This is an automated email from the ASF dual-hosted git repository. lmzheng pushed a commit to branch merrymercy-patch-1 in repository https://gitbox.apache.org/repos/asf/tvm-ffi.git
commit c8ac3290fc6f8160977a5ac13d7dbee04e7fc98c Author: Lianmin Zheng <[email protected]> AuthorDate: Tue Dec 2 12:23:37 2025 -0800 Change log level from info to debug for JIT initialization --- python/tvm_ffi/_optional_torch_c_dlpack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tvm_ffi/_optional_torch_c_dlpack.py b/python/tvm_ffi/_optional_torch_c_dlpack.py index 7756926..f3d0119 100644 --- a/python/tvm_ffi/_optional_torch_c_dlpack.py +++ b/python/tvm_ffi/_optional_torch_c_dlpack.py @@ -116,7 +116,7 @@ def load_torch_c_dlpack_extension() -> Any: # noqa: PLR0912, PLR0915 libname = f"libtorch_c_dlpack_addon_torch{major}{minor}-{device}{suffix}" lib_path = addon_output_dir / libname if not lib_path.exists(): - logger.info("JIT-compiling torch-c-dlpack-ext to cache...") + logger.debug("JIT-compiling torch-c-dlpack-ext to cache...") build_script_path = ( Path(__file__).parent / "utils" / "_build_optional_torch_c_dlpack.py" )
