(self, other: Union[torch.Tensor, 'VarLenTensor', float])
| 215 | return self.__elemwise__(other, torch.add) |
| 216 | |
| 217 | def __radd__(self, other: Union[torch.Tensor, 'VarLenTensor', float]) -> 'VarLenTensor': |
| 218 | return self.__elemwise__(other, torch.add) |
| 219 | |
| 220 | def __sub__(self, other: Union[torch.Tensor, 'VarLenTensor', float]) -> 'VarLenTensor': |
| 221 | return self.__elemwise__(other, torch.sub) |
nothing calls this directly
no test coverage detected