(self, other: Union[torch.Tensor, 'SparseTensor', float])
| 330 | return self.__elemwise__(other, lambda x, y: torch.sub(y, x)) |
| 331 | |
| 332 | def __mul__(self, other: Union[torch.Tensor, 'SparseTensor', float]) -> 'SparseTensor': |
| 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) |
nothing calls this directly
no test coverage detected