| 196 | } |
| 197 | |
| 198 | NPY_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 |
no test coverage detected