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

Function ufunc_accumulate

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

Source from the content-addressed store, hash-verified

5899}
5900
5901static PyObject *
5902ufunc_accumulate(PyUFuncObject *ufunc,
5903 PyObject *const *args, Py_ssize_t len_args, PyObject *kwnames)
5904{
5905 return PyUFunc_GenericReduction(
5906 ufunc, args, len_args, kwnames, UFUNC_ACCUMULATE);
5907}
5908
5909static PyObject *
5910ufunc_reduceat(PyUFuncObject *ufunc,

Callers

nothing calls this directly

Calls 1

PyUFunc_GenericReductionFunction · 0.85

Tested by

no test coverage detected