(self, *data: DummyChunkedArray, **kwargs)
| 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 |
| 95 | |
| 96 | return compute(*data, **kwargs) |
| 97 | |
| 98 | def apply_gufunc( |
| 99 | self, |
no outgoing calls
no test coverage detected