(x, depth2)
| 382 | |
| 383 | |
| 384 | def _get_overlap_rechunked_chunks(x, depth2): |
| 385 | depths = [max(d) if isinstance(d, tuple) else d for d in depth2.values()] |
| 386 | # rechunk if new chunks are needed to fit depth in every chunk |
| 387 | return tuple(ensure_minimum_chunksize(size, c) for size, c in zip(depths, x.chunks)) |
| 388 | |
| 389 | |
| 390 | def overlap(x, depth, boundary, *, allow_rechunk=True): |
no test coverage detected
searching dependent graphs…