Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dask/dask
/ assert_chunks_match
Function
assert_chunks_match
dask/array/tests/test_rechunk.py:737–739 ·
view source on GitHub ↗
(left, right)
Source
from the content-addressed store, hash-verified
735
736
737
def
assert_chunks_match(left, right):
738
for
ldim, rdim in zip(left, right):
739
assert all(np.isnan(l) or l == r
for
l, r in zip(ldim, rdim))
740
741
742
def
test_rechunk_unknown_raises():
Callers
4
test_rechunk_with_fully_unknown_dimension
Function · 0.85
test_rechunk_with_partially_unknown_dimension
Function · 0.85
test_rechunk_with_fully_unknown_dimension_explicit
Function · 0.85
test_rechunk_with_partially_unknown_dimension_explicit
Function · 0.85
Calls
1
all
Function · 0.85
Tested by
no test coverage detected