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

Function ufunc_reduceat

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

Source from the content-addressed store, hash-verified

5907}
5908
5909static PyObject *
5910ufunc_reduceat(PyUFuncObject *ufunc,
5911 PyObject *const *args, Py_ssize_t len_args, PyObject *kwnames)
5912{
5913 return PyUFunc_GenericReduction(
5914 ufunc, args, len_args, kwnames, UFUNC_REDUCEAT);
5915}
5916
5917/* Helper for ufunc_at, below */
5918static inline PyArrayObject *

Callers

nothing calls this directly

Calls 1

PyUFunc_GenericReductionFunction · 0.85

Tested by

no test coverage detected