| 342 | } |
| 343 | |
| 344 | static PyObject * |
| 345 | array_matrix_multiply(PyObject *m1, PyObject *m2) |
| 346 | { |
| 347 | BINOP_GIVE_UP_IF_NEEDED(m1, m2, nb_matrix_multiply, array_matrix_multiply); |
| 348 | return PyArray_GenericBinaryFunction(m1, m2, n_ops.matmul); |
| 349 | } |
| 350 | |
| 351 | static PyObject * |
| 352 | array_inplace_matrix_multiply(PyArrayObject *self, PyObject *other) |
nothing calls this directly
no test coverage detected