()
| 37 | |
| 38 | |
| 39 | def test_gemm(): |
| 40 | A = decl_buffer((64, 64), "float32", scope="global") |
| 41 | B = decl_buffer((64, 64), "float32", scope="global") |
| 42 | C = decl_buffer((64, 64), "float32", scope="global") |
| 43 | D = decl_buffer((64, 64), "float32", scope="global") |
| 44 | _test("gemm", D[:, :], A[:, :], B[:, :], C[:, :], True, False, 1.0, 0.0) |
| 45 | |
| 46 | |
| 47 | def test_buffer_replacer_no_shared_default(): |
no test coverage detected
searching dependent graphs…