(self, rhs)
| 714 | return _call_singa_func(singa.LEFloat, self.data, float(rhs)) |
| 715 | |
| 716 | def __gt__(self, rhs): |
| 717 | if isinstance(rhs, Tensor): |
| 718 | return from_raw_tensor(singa.__gt__(self.data, rhs.data)) |
| 719 | else: |
| 720 | return _call_singa_func(singa.GTFloat, self.data, float(rhs)) |
| 721 | |
| 722 | def __ge__(self, rhs): |
| 723 | if isinstance(rhs, Tensor): |
no test coverage detected