()
| 142 | |
| 143 | @pytest.mark.xfail(da._array_expr_enabled(), reason="blockwise fusion needed") |
| 144 | def test_trim_internal(): |
| 145 | d = da.ones((40, 60), chunks=(10, 10)) |
| 146 | e = trim_internal(d, axes={0: 1, 1: 2}, boundary="reflect") |
| 147 | assert len(collections_to_expr([e]).__dask_graph__()) == 24 |
| 148 | assert e.chunks == ((8, 8, 8, 8), (6, 6, 6, 6, 6, 6)) |
| 149 | |
| 150 | |
| 151 | def test_periodic(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…