(self, other: Union[torch.Tensor, 'VarLenTensor', float])
| 212 | return new_tensor |
| 213 | |
| 214 | def __add__(self, other: Union[torch.Tensor, 'VarLenTensor', float]) -> 'VarLenTensor': |
| 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) |
nothing calls this directly
no test coverage detected