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