MCPcopy Create free account
hub / github.com/numpy/numpy / array_matrix_multiply

Function array_matrix_multiply

numpy/core/src/multiarray/number.c:344–349  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

342}
343
344static PyObject *
345array_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
351static PyObject *
352array_inplace_matrix_multiply(PyArrayObject *self, PyObject *other)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected