(self, dep: Expr)
| 1874 | return {} |
| 1875 | |
| 1876 | def _broadcast_dep(self, dep: Expr): |
| 1877 | if ( |
| 1878 | dep.npartitions == 1 |
| 1879 | and isinstance(self.operand("arg"), Expr) |
| 1880 | and dep is self.operand("arg") |
| 1881 | ): |
| 1882 | return True |
| 1883 | return super()._broadcast_dep(dep) |
| 1884 | |
| 1885 | def _divisions(self): |
| 1886 | if not self.is_monotonic: |
no test coverage detected