MCPcopy Create free account
hub / github.com/dask/dask / load_chunk

Function load_chunk

dask/array/core.py:4634–4643  ·  view source on GitHub ↗
(out: A, index: slice, lock: Any, region: slice | None)

Source from the content-addressed store, hash-verified

4632
4633
4634def load_chunk(out: A, index: slice, lock: Any, region: slice | None) -> A:
4635 return load_store_chunk(
4636 None,
4637 out=out,
4638 region=region,
4639 index=index,
4640 lock=lock,
4641 return_stored=True,
4642 load_stored=True,
4643 )
4644
4645
4646def _as_dtype(a, dtype):

Callers

nothing calls this directly

Calls 1

load_store_chunkFunction · 0.85

Tested by

no test coverage detected