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

Function array_inplace_true_divide

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

Source from the content-addressed store, hash-verified

813}
814
815static PyObject *
816array_inplace_true_divide(PyArrayObject *m1, PyObject *m2)
817{
818 INPLACE_GIVE_UP_IF_NEEDED(
819 m1, m2, nb_inplace_true_divide, array_inplace_true_divide);
820 return PyArray_GenericInplaceBinaryFunction(m1, m2,
821 n_ops.true_divide);
822}
823
824
825static int

Callers

nothing calls this directly

Tested by

no test coverage detected