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

tqchen 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 2618091ae7 [Hotfix] Remove `LOG(INFO)` from unsupported dtype 
legalization pass (#15015)
2618091ae7 is described below

commit 2618091ae7ae3b938f6e35c70a39caf5bf4647e3
Author: Zihao Ye <[email protected]>
AuthorDate: Sat Jun 3 07:48:21 2023 -0700

    [Hotfix] Remove `LOG(INFO)` from unsupported dtype legalization pass 
(#15015)
    
    hotfix
---
 src/tir/transforms/unsupported_dtype_legalize.cc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/tir/transforms/unsupported_dtype_legalize.cc 
b/src/tir/transforms/unsupported_dtype_legalize.cc
index be8876b815..0040951961 100644
--- a/src/tir/transforms/unsupported_dtype_legalize.cc
+++ b/src/tir/transforms/unsupported_dtype_legalize.cc
@@ -716,7 +716,6 @@ 
TVM_REGISTER_GLOBAL("tir.transform.FP8ComputeLegalize").set_body_typed(FP8Comput
 
 Pass FP8StorageLegalize() {
   auto pass_func = [](PrimFunc f, IRModule m, PassContext ctx) {
-    LOG(INFO) << f;
     // TODO(tvm-team): skip if the target supports fp8
     return FP8StorageLegalizer().Legalize(f);
   };

Reply via email to