(self, other: Union[torch.Tensor, 'SparseTensor', float])
| 318 | return new_tensor |
| 319 | |
| 320 | def __add__(self, other: Union[torch.Tensor, 'SparseTensor', float]) -> 'SparseTensor': |
| 321 | return self.__elemwise__(other, torch.add) |
| 322 | |
| 323 | def __radd__(self, other: Union[torch.Tensor, 'SparseTensor', float]) -> 'SparseTensor': |
| 324 | return self.__elemwise__(other, torch.add) |
nothing calls this directly
no test coverage detected