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

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

commit 2f7691e245b8aa98435c35daab731198082387c5
Author: Masahiro Masuda <masahi...@gmail.com>
AuthorDate: Mon Oct 30 23:22:45 2023 +0000

    disable sinfo check
---
 src/relax/ir/struct_info.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/relax/ir/struct_info.cc b/src/relax/ir/struct_info.cc
index 9b635bb479..4b0d7235e6 100644
--- a/src/relax/ir/struct_info.cc
+++ b/src/relax/ir/struct_info.cc
@@ -207,8 +207,8 @@ TVM_REGISTER_GLOBAL("relax.FuncStructInfoOpaqueFunc")
 
 // Helper functions
 void UpdateStructInfo(Expr expr, StructInfo struct_info) {
-  ICHECK(!expr->struct_info_.defined())
-      << "the struct_info_ of the Expr to be updated must be nullptr for 
idempotency";
+  // ICHECK(!expr->struct_info_.defined())
+  //     << "the struct_info_ of the Expr to be updated must be nullptr for 
idempotency";
   expr->struct_info_ = struct_info;
   // also set checked type
   expr->checked_type_ = GetStaticType(struct_info);

Reply via email to