(self, data: DummyChunkedArray, chunks, **kwargs)
| 88 | return da.from_array(data, chunks, **kwargs) |
| 89 | |
| 90 | def rechunk(self, data: DummyChunkedArray, chunks, **kwargs) -> DummyChunkedArray: |
| 91 | return data.rechunk(chunks, **kwargs) |
| 92 | |
| 93 | def compute(self, *data: DummyChunkedArray, **kwargs) -> tuple[np.ndarray, ...]: # type: ignore[override] |
| 94 | from dask.array import compute |