lhutton1 commented on code in PR #16862:
URL: https://github.com/apache/tvm/pull/16862#discussion_r1562343236


##########
tests/python/arith/test_arith_simplify.py:
##########
@@ -53,6 +56,33 @@ def test_simplify_symbolic_comparison():
     assert ana.can_prove((n + 31) // 32 * 32 >= i0 * 32 + i1, 
PS.SYMBOLIC_BOUND)
 
 
+def test_simplify_vscale_comparison_with_sve_target():
+    ana = tvm.arith.Analyzer()
+    vs = tvm.tir.vscale()
+
+    with tvm.target.Target("llvm -mtriple=aarch64-linux-gnu -mattr=+sve"):
+        assert ana.can_prove(vs * 32 < vs * 64)

Review Comment:
   Added, thanks



-- 
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: commits-unsubscr...@tvm.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to