This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch refactor
in repository https://gitbox.apache.org/repos/asf/tvm.git

commit 81a2a5a63e03e8753943b7cc5d38101abdc1cb28
Author: tqchen <[email protected]>
AuthorDate: Fri Feb 14 11:17:51 2025 -0500

    Bugfix build with prefix
---
 python/tvm/driver/build_module.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/python/tvm/driver/build_module.py 
b/python/tvm/driver/build_module.py
index 07110567fd..4f8331cca5 100644
--- a/python/tvm/driver/build_module.py
+++ b/python/tvm/driver/build_module.py
@@ -244,7 +244,6 @@ def build(
             f"but got {type(inputs)}."
         )
 
-    print("input_mod", input_mod)
     if not isinstance(inputs, (dict, container.Map)):
         target = Target.current() if target is None else target
         if target is None and isinstance(input_mod, tvm.IRModule):
@@ -293,7 +292,6 @@ def build(
         target_host = "llvm" if tvm.runtime.enabled("llvm") else "stackvm"
 
     annotated_mods, target_host = 
Target.canon_target_map_and_host(annotated_mods, target_host)
-    print("annotated_mods", annotated_mods)
     rt_mod_host = _driver_ffi.tir_to_runtime(annotated_mods, target_host)
 
     annotated_mods, target_host = 
Target.canon_target_map_and_host(annotated_mods, target_host)

Reply via email to