(self, rhs)
| 726 | return _call_singa_func(singa.GEFloat, self.data, float(rhs)) |
| 727 | |
| 728 | def __eq__(self, rhs): |
| 729 | if isinstance(rhs, Tensor): |
| 730 | return from_raw_tensor(singa.__eq__(self.data, rhs.data)) |
| 731 | elif rhs is None: |
| 732 | return False |
| 733 | else: |
| 734 | return _call_singa_func(singa.EQFloat, self.data, float(rhs)) |
| 735 | |
| 736 | def __radd__(self, lhs): |
| 737 | lhs = float(lhs) |
no test coverage detected