()
| 132 | |
| 133 | |
| 134 | def test_select(): |
| 135 | ck = IntSetChecker() |
| 136 | x, y = tvm.tirx.Var("x", "int32"), tvm.tirx.Var("y", "int32") |
| 137 | ck.verify(tvm.tirx.Select(x > 0, x - 1, x + 1), {x: tvm.arith.IntervalSet(0, 10)}, (-1, 11)) |
| 138 | |
| 139 | |
| 140 | def check_region_bound(expect_region, var_dom, mode, predicate=None): |
nothing calls this directly
no test coverage detected
searching dependent graphs…