()
| 227 | |
| 228 | |
| 229 | def test_buffer_load(): |
| 230 | a = tirx.decl_buffer((128, 128), "float16", name="A") |
| 231 | obj = tirx.BufferLoad(a, [128, 128]) |
| 232 | _assert_print( |
| 233 | obj, |
| 234 | """ |
| 235 | A = T.Buffer((128, 128), "float16") |
| 236 | A[128, 128] |
| 237 | """, |
| 238 | ) |
| 239 | |
| 240 | |
| 241 | def test_buffer_store(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…