(self, rhs)
| 702 | return _call_singa_func(singa.GEFloat, self.data, rhs) |
| 703 | |
| 704 | def __eq__(self, rhs): |
| 705 | if isinstance(rhs, Tensor): |
| 706 | return from_raw_tensor(singa.__eq__(self.data, rhs.data)) |
| 707 | elif rhs is None: |
| 708 | return False |
| 709 | else: |
| 710 | return _call_singa_func(singa.EQFloat, self.data, rhs) |
| 711 | |
| 712 | def __radd__(self, lhs): |
| 713 | lhs = float(lhs) |
nothing calls this directly
no test coverage detected