(self, rhs)
| 698 | return self.__div__(rhs) |
| 699 | |
| 700 | def __floordiv__(self, rhs): |
| 701 | tmp = self.__div__(rhs) |
| 702 | return _call_singa_func(singa.Floor, tmp.data) |
| 703 | |
| 704 | def __lt__(self, rhs): |
| 705 | if isinstance(rhs, Tensor): |
nothing calls this directly
no test coverage detected