(self, rhs)
| 702 | return _call_singa_func(singa.Floor, tmp.data) |
| 703 | |
| 704 | def __lt__(self, rhs): |
| 705 | if isinstance(rhs, Tensor): |
| 706 | return from_raw_tensor(singa.__lt__(self.data, rhs.data)) |
| 707 | else: |
| 708 | return _call_singa_func(singa.LTFloat, self.data, float(rhs)) |
| 709 | |
| 710 | def __le__(self, rhs): |
| 711 | if isinstance(rhs, Tensor): |
nothing calls this directly
no test coverage detected