NUMPY_API * ArgMax */
| 206 | * ArgMax |
| 207 | */ |
| 208 | NPY_NO_EXPORT PyObject * |
| 209 | PyArray_ArgMax(PyArrayObject *op, int axis, PyArrayObject *out) |
| 210 | { |
| 211 | return _PyArray_ArgMinMaxCommon(op, axis, out, 0, 1); |
| 212 | } |
| 213 | |
| 214 | NPY_NO_EXPORT PyObject * |
| 215 | _PyArray_ArgMinWithKeepdims(PyArrayObject *op, |
nothing calls this directly
no test coverage detected