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)
| 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 | |
| 682 | def from_graph(layer, _meta, chunks, keys, name_prefix): |