(self)
| 8 | t.schedule_linear() |
| 9 | |
| 10 | def test_store_shape(self): |
| 11 | t = Tensor.zeros(1024).fs_store() |
| 12 | assert t.shape == (16,), t.shape |
| 13 | t.schedule_linear() |
| 14 | |
| 15 | def test_load_large_shape(self): |
| 16 | t = Tensor(bytes(16)).fs_load(10_000_000) |
nothing calls this directly
no test coverage detected