(self, rhs)
| 696 | return _call_singa_func(singa.GTFloat, self.data, rhs) |
| 697 | |
| 698 | def __ge__(self, rhs): |
| 699 | if isinstance(rhs, Tensor): |
| 700 | return from_raw_tensor(singa.__ge__(self.data, rhs.data)) |
| 701 | else: |
| 702 | return _call_singa_func(singa.GEFloat, self.data, rhs) |
| 703 | |
| 704 | def __eq__(self, rhs): |
| 705 | if isinstance(rhs, Tensor): |
nothing calls this directly
no test coverage detected