(self, other: Union[torch.Tensor, 'SparseTensor', float])
| 339 | return self.__elemwise__(other, torch.div) |
| 340 | |
| 341 | def __rtruediv__(self, other: Union[torch.Tensor, 'SparseTensor', float]) -> 'SparseTensor': |
| 342 | return self.__elemwise__(other, lambda x, y: torch.div(y, x)) |
| 343 | |
| 344 | def __getitem__(self, idx): |
| 345 | if isinstance(idx, int): |
nothing calls this directly
no test coverage detected