(self, dep: Expr)
| 581 | return self.operands |
| 582 | |
| 583 | def _broadcast_dep(self, dep: Expr): |
| 584 | # Checks if a dependency should be broadcasted to |
| 585 | # all partitions of this `Blockwise` operation |
| 586 | return dep.npartitions == 1 and dep.ndim < self.ndim |
| 587 | |
| 588 | def _divisions(self): |
| 589 | # This is an issue. In normal Dask we re-divide everything in a step |
no outgoing calls
no test coverage detected