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