(self, other, res_params=None)
| 7195 | return self.mul(other) |
| 7196 | |
| 7197 | def mul(self, other, res_params=None): |
| 7198 | # legacy function |
| 7199 | return self.dot(other, res_params) |
| 7200 | |
| 7201 | def dot(self, other, res_params=None, n_threads=None): |
| 7202 | """ Matrix-matrix and matrix-vector multiplication. |