(self, rhs)
| 690 | return _call_singa_func(singa.LEFloat, self.data, rhs) |
| 691 | |
| 692 | def __gt__(self, rhs): |
| 693 | if isinstance(rhs, Tensor): |
| 694 | return from_raw_tensor(singa.__gt__(self.data, rhs.data)) |
| 695 | else: |
| 696 | return _call_singa_func(singa.GTFloat, self.data, rhs) |
| 697 | |
| 698 | def __ge__(self, rhs): |
| 699 | if isinstance(rhs, Tensor): |
nothing calls this directly
no test coverage detected