Biubiubiu12 commented on code in PR #14304:
URL: https://github.com/apache/tvm/pull/14304#discussion_r1138007524


##########
tests/python/unittest/test_arith_intset.py:
##########
@@ -370,7 +370,8 @@ def test_union_lower_bound():
     pos_inf = tvm.arith.int_set.pos_inf()
     set_0 = tvm.arith.IntervalSet(min_value=neg_inf, max_value=0)
     set_1 = tvm.arith.IntervalSet(min_value=1, max_value=pos_inf)
-    result = tvm.arith.int_set.union_lower_bound([set_0, set_1])
+    set_2 = tvm.arith.IntervalSet(min_value=pos_inf, max_value=neg_inf)
+    result = tvm.arith.int_set.union_lower_bound([set_0, set_1, set_2])

Review Comment:
   code updated,thanks for your great advice! 



-- 
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