(self)
| 13 | t.schedule_linear() |
| 14 | |
| 15 | def test_load_large_shape(self): |
| 16 | t = Tensor(bytes(16)).fs_load(10_000_000) |
| 17 | assert t.shape == (10_000_000,), t.shape |
| 18 | t.schedule_linear() |
| 19 | |
| 20 | def test_store_large_shape(self): |
| 21 | t = Tensor.zeros(10_000_000).fs_store() |
nothing calls this directly
no test coverage detected