Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jaxonnxruntime/onnx_ops/reducemax.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down