(self, other: Union[torch.Tensor, 'VarLenTensor', float])
| 221 | return self.__elemwise__(other, torch.sub) |
| 222 | |
| 223 | def __rsub__(self, other: Union[torch.Tensor, 'VarLenTensor', float]) -> 'VarLenTensor': |
| 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) |
nothing calls this directly
no test coverage detected