Lunderberg commented on code in PR #13299:
URL: https://github.com/apache/tvm/pull/13299#discussion_r1037372584


##########
tests/python/unittest/test_tir_transform_simplify.py:
##########
@@ -1689,5 +1689,26 @@ def expected(A: T.Buffer[1, "int32"]):
         A[0] = 12
 
 
+# class TestTemp(BaseBeforeAfter):
+#     """Simplification using prior known"""
+
+#     transitively_prove_inequalities = False
+#     convert_boolean_to_and_of_ors = False
+#     apply_constraints_to_boolean_branches = False
+#     propagate_knowns_to_prove_conditional = False
+#     propagate_knowns_to_simplify_expressions = False
+
+#     def before(A: T.Buffer[16, "int32"]):
+#         for i in T.serial(16):
+#             if i != 0:
+#                 if i * i == 0:
+#                     A[i] = 5
+
+#     def expected(A: T.Buffer[16, "int32"]):
+#         for i in T.serial(16):
+#             if i != 0:
+#                 T.evaluate(0)
+
+

Review Comment:
   Thank you, and removed!



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to