(boundary)
| 369 | "boundary", [None, "reflect", "periodic", "nearest", "none", 0] |
| 370 | ) |
| 371 | def test_map_overlap_no_depth(boundary): |
| 372 | x = da.arange(10, chunks=5) |
| 373 | y = x.map_overlap(lambda i: i, depth=0, boundary=boundary, dtype=x.dtype) |
| 374 | assert_eq(y, x) |
| 375 | |
| 376 | |
| 377 | @pytest.mark.xfail(da._array_expr_enabled(), reason="reshape needed") |
nothing calls this directly
no test coverage detected
searching dependent graphs…