(self, other: Union[torch.Tensor, 'VarLenTensor', float])
| 224 | return self.__elemwise__(other, lambda x, y: torch.sub(y, x)) |
| 225 | |
| 226 | def __mul__(self, other: Union[torch.Tensor, 'VarLenTensor', float]) -> 'VarLenTensor': |
| 227 | return self.__elemwise__(other, torch.mul) |
| 228 | |
| 229 | def __rmul__(self, other: Union[torch.Tensor, 'VarLenTensor', float]) -> 'VarLenTensor': |
| 230 | return self.__elemwise__(other, torch.mul) |
nothing calls this directly
no test coverage detected