(self, other: Union[torch.Tensor, 'VarLenTensor', float])
| 233 | return self.__elemwise__(other, torch.div) |
| 234 | |
| 235 | def __rtruediv__(self, other: Union[torch.Tensor, 'VarLenTensor', float]) -> 'VarLenTensor': |
| 236 | return self.__elemwise__(other, lambda x, y: torch.div(y, x)) |
| 237 | |
| 238 | def __getitem__(self, idx): |
| 239 | if isinstance(idx, int): |
nothing calls this directly
no test coverage detected