MCPcopy
hub / github.com/dask/dask / map_overlap

Method map_overlap

dask/array/_array_expr/_collection.py:666–679  ·  view source on GitHub ↗

Map a function over blocks of the array with some overlap Refer to :func:`dask.array.map_overlap` for full documentation. See Also -------- dask.array.map_overlap : equivalent function

(self, func, depth, boundary=None, trim=True, **kwargs)

Source from the content-addressed store, hash-verified

664 return NotImplemented
665
666 def map_overlap(self, func, depth, boundary=None, trim=True, **kwargs):
667 """Map a function over blocks of the array with some overlap
668
669 Refer to :func:`dask.array.map_overlap` for full documentation.
670
671 See Also
672 --------
673 dask.array.map_overlap : equivalent function
674 """
675 from dask.array._array_expr._overlap import map_overlap
676
677 return map_overlap(
678 func, self, depth=depth, boundary=boundary, trim=trim, **kwargs
679 )
680
681
682def from_graph(layer, _meta, chunks, keys, name_prefix):

Calls 1

map_overlapFunction · 0.90