()
| 26 | |
| 27 | |
| 28 | def test_copy(): |
| 29 | A = decl_buffer((64, 64), "float32", scope="global") |
| 30 | A_sm = decl_buffer((64, 64), "float32", scope="shared") |
| 31 | _test("copy", A[0:64, 0:64], A_sm[0:64, 0:64]) |
| 32 | |
| 33 | |
| 34 | def test_fill(): |
no test coverage detected
searching dependent graphs…