From 72138cb65a6266cec790a582a343d40077fce3df Mon Sep 17 00:00:00 2001 From: Lucas Eekhof <105216949+eekhof@users.noreply.github.com> Date: Tue, 13 Jan 2026 12:32:15 +0100 Subject: [PATCH] Fix docstring reference to ReduceMax operator The link in `onnx_reducemax` wrongfully pointed to the reference for ReduceSum: https://github.com/onnx/onnx/blob/v1.12.0/docs/Operators.md#ReduceSum. Signed-off-by: Lucas Eekhof <105216949+eekhof@users.noreply.github.com> --- jaxonnxruntime/onnx_ops/reducemax.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jaxonnxruntime/onnx_ops/reducemax.py b/jaxonnxruntime/onnx_ops/reducemax.py index f602a89..45a206a 100644 --- a/jaxonnxruntime/onnx_ops/reducemax.py +++ b/jaxonnxruntime/onnx_ops/reducemax.py @@ -81,7 +81,7 @@ def onnx_reducemax( keepdims=1, noop_with_empty_axes=0, ): - """The impl for https://github.com/onnx/onnx/blob/v1.12.0/docs/Operators.md#ReduceSum.""" + """The impl for https://github.com/onnx/onnx/blob/v1.12.0/docs/Operators.md#ReduceMax.""" assert len(input_args) == 1 or len(input_args) == 2 data = input_args[0] if axes is None and noop_with_empty_axes > 0: