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

Function array_inplace_multiply

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

Source from the content-addressed store, hash-verified

707}
708
709static PyObject *
710array_inplace_multiply(PyArrayObject *m1, PyObject *m2)
711{
712 INPLACE_GIVE_UP_IF_NEEDED(
713 m1, m2, nb_inplace_multiply, array_inplace_multiply);
714 return PyArray_GenericInplaceBinaryFunction(m1, m2, n_ops.multiply);
715}
716
717static PyObject *
718array_inplace_remainder(PyArrayObject *m1, PyObject *m2)

Callers

nothing calls this directly

Tested by

no test coverage detected