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

Function _PyArray_ArgMaxWithKeepdims

numpy/core/src/multiarray/calculation.c:198–203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196}
197
198NPY_NO_EXPORT PyObject*
199_PyArray_ArgMaxWithKeepdims(PyArrayObject *op,
200 int axis, PyArrayObject *out, int keepdims)
201{
202 return _PyArray_ArgMinMaxCommon(op, axis, out, keepdims, 1);
203}
204
205/*NUMPY_API
206 * ArgMax

Callers 1

array_argmaxFunction · 0.85

Calls 1

_PyArray_ArgMinMaxCommonFunction · 0.85

Tested by

no test coverage detected