MCPcopy Create free account
hub / github.com/dask/dask / _lower

Method _lower

dask/array/_array_expr/_blockwise.py:205–212  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

203 return dict(graph)
204
205 def _lower(self):
206 if self.align_arrays:
207 _, arrays, changed = unify_chunks_expr(*self.args)
208 if changed:
209 args = []
210 for idx, arr in zip(self.args[1::2], arrays):
211 args.extend([arr, idx])
212 return type(self)(*self.operands[: len(self._parameters)], *args)
213
214
215class Elemwise(Blockwise):

Callers

nothing calls this directly

Calls 1

unify_chunks_exprFunction · 0.90

Tested by

no test coverage detected