(self, rhs)
| 720 | return _call_singa_func(singa.GTFloat, self.data, float(rhs)) |
| 721 | |
| 722 | def __ge__(self, rhs): |
| 723 | if isinstance(rhs, Tensor): |
| 724 | return from_raw_tensor(singa.__ge__(self.data, rhs.data)) |
| 725 | else: |
| 726 | return _call_singa_func(singa.GEFloat, self.data, float(rhs)) |
| 727 | |
| 728 | def __eq__(self, rhs): |
| 729 | if isinstance(rhs, Tensor): |
nothing calls this directly
no test coverage detected