(self, rhs)
| 684 | return _call_singa_func(singa.LTFloat, self.data, rhs) |
| 685 | |
| 686 | def __le__(self, rhs): |
| 687 | if isinstance(rhs, Tensor): |
| 688 | return from_raw_tensor(singa.__le__(self.data, rhs.data)) |
| 689 | else: |
| 690 | return _call_singa_func(singa.LEFloat, self.data, rhs) |
| 691 | |
| 692 | def __gt__(self, rhs): |
| 693 | if isinstance(rhs, Tensor): |
nothing calls this directly
no test coverage detected