(self, other: Union[torch.Tensor, 'SparseTensor', float])
| 336 | return self.__elemwise__(other, torch.mul) |
| 337 | |
| 338 | def __truediv__(self, other: Union[torch.Tensor, 'SparseTensor', float]) -> 'SparseTensor': |
| 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)) |
nothing calls this directly
no test coverage detected