()
| 385 | |
| 386 | |
| 387 | def test_modular_set(): |
| 388 | ck = IntSetChecker() |
| 389 | x = tvm.tirx.Var("x", "int32") |
| 390 | y = tvm.tirx.Var("y", "int32") |
| 391 | expr = (x * 2048 + y * 16) % 7168 |
| 392 | ck.verify( |
| 393 | expr, {x: tvm.arith.IntervalSet(0, 128), y: tvm.arith.IntervalSet(0, 3584)}, (0, 7152) |
| 394 | ) |
| 395 | |
| 396 | |
| 397 | def test_relax_deep_variable_dependency_chain(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…