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

Function ufunc_reduce

numpy/core/src/umath/ufunc_object.c:5893–5899  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5891
5892
5893static PyObject *
5894ufunc_reduce(PyUFuncObject *ufunc,
5895 PyObject *const *args, Py_ssize_t len_args, PyObject *kwnames)
5896{
5897 return PyUFunc_GenericReduction(
5898 ufunc, args, len_args, kwnames, UFUNC_REDUCE);
5899}
5900
5901static PyObject *
5902ufunc_accumulate(PyUFuncObject *ufunc,

Callers

nothing calls this directly

Calls 1

PyUFunc_GenericReductionFunction · 0.85

Tested by

no test coverage detected