(self, rhs)
| 678 | return _call_singa_func(singa.Floor, tmp.data) |
| 679 | |
| 680 | def __lt__(self, rhs): |
| 681 | if isinstance(rhs, Tensor): |
| 682 | return from_raw_tensor(singa.__lt__(self.data, rhs.data)) |
| 683 | else: |
| 684 | return _call_singa_func(singa.LTFloat, self.data, rhs) |
| 685 | |
| 686 | def __le__(self, rhs): |
| 687 | if isinstance(rhs, Tensor): |
nothing calls this directly
no test coverage detected