(self)
| 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 | |
| 3787 | class Fused(Blockwise): |
nothing calls this directly
no test coverage detected