()
| 200 | |
| 201 | |
| 202 | def test_buffer(): |
| 203 | a = tirx.decl_buffer((128, 128), "float16", name="A") |
| 204 | _assert_print( |
| 205 | a, |
| 206 | """A = T.Buffer((128, 128), "float16") |
| 207 | A""", |
| 208 | ) |
| 209 | |
| 210 | |
| 211 | def test_buffer_region(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…