(self, rhs)
| 708 | return _call_singa_func(singa.LTFloat, self.data, float(rhs)) |
| 709 | |
| 710 | def __le__(self, rhs): |
| 711 | if isinstance(rhs, Tensor): |
| 712 | return from_raw_tensor(singa.__le__(self.data, rhs.data)) |
| 713 | else: |
| 714 | return _call_singa_func(singa.LEFloat, self.data, float(rhs)) |
| 715 | |
| 716 | def __gt__(self, rhs): |
| 717 | if isinstance(rhs, Tensor): |
nothing calls this directly
no test coverage detected