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

Function array_multiply

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

Source from the content-addressed store, hash-verified

316}
317
318static PyObject *
319array_multiply(PyObject *m1, PyObject *m2)
320{
321 PyObject *res;
322
323 BINOP_GIVE_UP_IF_NEEDED(m1, m2, nb_multiply, array_multiply);
324 if (try_binary_elide(m1, m2, &array_inplace_multiply, &res, 1)) {
325 return res;
326 }
327 return PyArray_GenericBinaryFunction(m1, m2, n_ops.multiply);
328}
329
330static PyObject *
331array_remainder(PyObject *m1, PyObject *m2)

Callers

nothing calls this directly

Calls 2

try_binary_elideFunction · 0.85

Tested by

no test coverage detected