()
| 362 | |
| 363 | |
| 364 | def test_region_lower_bound_unfusable(): |
| 365 | var_dom = { |
| 366 | tvm.tirx.Var("i", "int32"): tvm.ir.Range(8), |
| 367 | tvm.tirx.Var("j", "int32"): tvm.ir.Range(4), |
| 368 | } |
| 369 | i, j = var_dom |
| 370 | check_region_bound({(i + j) // 2: (0, 6)}, var_dom, mode="lowerbound") |
| 371 | |
| 372 | |
| 373 | def test_union_lower_bound(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…