MCPcopy
hub / github.com/dask/dask / _lower

Method _lower

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

unify_chunks_exprFunction · 0.90

Tested by

no test coverage detected