(self)
| 266 | return dask.array.shuffle(x, indexer, axis, chunks="auto") |
| 267 | |
| 268 | def get_auto_chunk_size(self) -> int: |
| 269 | from dask import config as dask_config |
| 270 | from dask.utils import parse_bytes |
| 271 | |
| 272 | return parse_bytes(dask_config.get("array.chunk-size")) |