MCPcopy Index your code
hub / github.com/dask/dask / load_chunk

Function load_chunk

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

Source from the content-addressed store, hash-verified

4834
4835
4836def load_chunk(out: A, index: slice, lock: Any, region: slice | None) -> A:
4837 return load_store_chunk(
4838 None,
4839 out=out,
4840 region=region,
4841 index=index,
4842 lock=lock,
4843 return_stored=True,
4844 load_stored=True,
4845 )
4846
4847
4848def _as_dtype(a, dtype):

Callers

nothing calls this directly

Calls 1

load_store_chunkFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…