(self, other: Union[torch.Tensor, 'VarLenTensor', float])
| 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) |
| 231 | |
| 232 | def __truediv__(self, other: Union[torch.Tensor, 'VarLenTensor', float]) -> 'VarLenTensor': |
| 233 | return self.__elemwise__(other, torch.div) |
nothing calls this directly
no test coverage detected