(self, rhs)
| 652 | return _call_singa_func(singa.SubFloat, self.data, rhs) |
| 653 | |
| 654 | def __mul__(self, rhs): |
| 655 | if isinstance(rhs, Tensor): |
| 656 | return from_raw_tensor(singa.__mul__(self.data, rhs.data)) |
| 657 | else: |
| 658 | return _call_singa_func(singa.MultFloat, self.data, rhs) |
| 659 | |
| 660 | def __div__(self, rhs): |
| 661 | if isinstance(rhs, Tensor): |
nothing calls this directly
no test coverage detected