()
| 272 | |
| 273 | def test_normalize_tile_layout(): |
| 274 | def case1(): |
| 275 | layout = TileLayout(S[(8, 8, 8, 4, 2) : (512, 64, 8, 2, 1)]) |
| 276 | layout_expected = TileLayout(S[4096:1]) |
| 277 | assert_structural_equal(layout_expected, layout.canonicalize()) |
| 278 | |
| 279 | case1() |
| 280 |
no test coverage detected
searching dependent graphs…