(self)
| 475 | |
| 476 | @property |
| 477 | def shape(self) -> torch.Size: |
| 478 | if self._shape is None: |
| 479 | self._shape = self.__cal_shape(self.feats, self.coords) |
| 480 | return self._shape |
| 481 | |
| 482 | @property |
| 483 | def layout(self) -> List[slice]: |
nothing calls this directly
no test coverage detected