↓ 2 callersFunction_moment_helper(Ms, ns, inner_term, order, sum, axis, kwargs)
dask/array/reductions.py:457
↓ 2 callersFunctionblockdims_from_blockshape >>> blockdims_from_blockshape((10, 10), (4, 3)) ((4, 4, 2), (3, 3, 3, 1)) >>> blockdims_from_blockshape((10, 0), (4, 0)) ((4, 4, 2),
dask/array/core.py:1242
↓ 2 callersFunctionbroadcast_chunksConstruct a chunks tuple that broadcasts many chunks tuples >>> a = ((5, 5),) >>> b = ((5, 5),) >>> broadcast_chunks(a, b) ((5, 5),)
dask/array/core.py:1044
↓ 2 callersFunctioncontract_tupleReturn simple chunks tuple such that factor divides all elements Examples -------- >>> contract_tuple((2, 2, 8, 4), 4) (4, 8, 4)
dask/array/reshape.py:260
↓ 2 callersFunctioncumdims_labelInternal utility for cumulative sum with label. >>> cumdims_label(((5, 3, 3), (2, 2, 1)), 'n') # doctest: +NORMALIZE_WHITESPACE [(('n', 0),
dask/array/rechunk.py:33