Returns a dictionary mapping between each index specified in `self.indices` and the number of output blocks for that indice.
(self)
| 590 | |
| 591 | @property |
| 592 | def dims(self): |
| 593 | """Returns a dictionary mapping between each index specified in |
| 594 | `self.indices` and the number of output blocks for that indice. |
| 595 | """ |
| 596 | if not hasattr(self, "_dims"): |
| 597 | self._dims = _make_dims(self.indices, self.numblocks, self.new_axes) |
| 598 | return self._dims |
| 599 | |
| 600 | def __repr__(self): |
| 601 | return f"Blockwise<{self.indices} -> {self.output}>" |
nothing calls this directly
no test coverage detected