()
| 246 | |
| 247 | |
| 248 | def test_region_bound_small_stride(): |
| 249 | i = tvm.tirx.Var("i", "int32") |
| 250 | var_dom = { |
| 251 | i: tvm.ir.Range(begin=0, end=64), |
| 252 | } |
| 253 | check_region_bound({(i * 4, i * 4 + 8): (0, 260)}, var_dom, mode="lowerbound") |
| 254 | |
| 255 | |
| 256 | def test_region_lower_bound_split_predicate(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…