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

Function PyArray_GenericBinaryFunction

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

Source from the content-addressed store, hash-verified

267
268
269NPY_NO_EXPORT PyObject *
270PyArray_GenericBinaryFunction(PyObject *m1, PyObject *m2, PyObject *op)
271{
272 return PyObject_CallFunctionObjArgs(op, m1, m2, NULL);
273}
274
275NPY_NO_EXPORT PyObject *
276PyArray_GenericUnaryFunction(PyArrayObject *m1, PyObject *op)

Callers 15

array_richcompareFunction · 0.85
__New_PyArray_StdFunction · 0.85
PyArray_ConjugateFunction · 0.85
array_addFunction · 0.85
array_subtractFunction · 0.85
array_multiplyFunction · 0.85
array_remainderFunction · 0.85
array_divmodFunction · 0.85
array_matrix_multiplyFunction · 0.85
array_powerFunction · 0.85
array_left_shiftFunction · 0.85
array_right_shiftFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected