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