(out: A, index: slice, lock: Any, region: slice | None)
| 4632 | |
| 4633 | |
| 4634 | def 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 | |
| 4646 | def _as_dtype(a, dtype): |
nothing calls this directly
no test coverage detected