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

Method _lower

dask/dataframe/dask_expr/_expr.py:3781–3784  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3779 return _get_meta_ufunc(self._dfs, self.args, self.func)
3780
3781 def _lower(self):
3782 args = maybe_align_partitions(*self.args, divisions=self._divisions())
3783 dfs = [x for x in args if isinstance(x, Expr) and x.ndim > 0]
3784 return UFuncElemwise(dfs[0], self.func, self._meta, False, self.kwargs, *args)
3785
3786
3787class Fused(Blockwise):

Callers

nothing calls this directly

Calls 3

maybe_align_partitionsFunction · 0.85
UFuncElemwiseClass · 0.85
_divisionsMethod · 0.45

Tested by

no test coverage detected