(lhs)
| 215 | a = tvm.tirx.Var("a", "int32") |
| 216 | |
| 217 | def test_non_support(lhs): |
| 218 | res = tvm.arith.deduce_bound(a, lhs < 10, {}, {}) |
| 219 | assert res.is_nothing() |
| 220 | |
| 221 | test_non_support(tvm.tirx.floormod(a, 16)) |
| 222 | test_non_support(tvm.tirx.Min(a, 16)) |
no test coverage detected
searching dependent graphs…