(self, rhs)
| 689 | return _call_singa_func(singa.MultFloat, self.data, float(rhs)) |
| 690 | |
| 691 | def __div__(self, rhs): |
| 692 | if isinstance(rhs, Tensor): |
| 693 | return from_raw_tensor(singa.__div__(self.data, rhs.data)) |
| 694 | else: |
| 695 | return _call_singa_func(singa.DivFloat, self.data, float(rhs)) |
| 696 | |
| 697 | def __truediv__(self, rhs): |
| 698 | return self.__div__(rhs) |
no test coverage detected