@@ -404,10 +404,10 @@ def Shape_JoinOp : Shape_Op<"join", [Commutative]> {
404
404
def Shape_MaxOp : Shape_Op<"max", [Commutative, NoSideEffect]> {
405
405
let summary = "Elementwise maximum";
406
406
let description = [{
407
- Computes the elementwise maximum of two shapes with equal ranks. If either
408
- operand is an error, then an error will be propagated to the result. If the
409
- input types mismatch or the ranks do not match, then the result is an
410
- error.
407
+ Computes the elementwise maximum of two sizes or shapes with equal ranks.
408
+ If either operand is an error, then an error will be propagated to the
409
+ result. If the input types mismatch or the ranks do not match, then the
410
+ result is an error.
411
411
}];
412
412
413
413
let arguments = (ins Shape_ShapeOrSizeType:$lhs, Shape_ShapeOrSizeType:$rhs);
@@ -423,10 +423,10 @@ def Shape_MaxOp : Shape_Op<"max", [Commutative, NoSideEffect]> {
423
423
def Shape_MinOp : Shape_Op<"min", [Commutative, NoSideEffect]> {
424
424
let summary = "Elementwise minimum";
425
425
let description = [{
426
- Computes the elementwise maximum of two shapes with equal ranks. If either
427
- operand is an error, then an error will be propagated to the result. If the
428
- input types mismatch or the ranks do not match, then the result is an
429
- error.
426
+ Computes the elementwise minimum of two sizes or shapes with equal ranks.
427
+ If either operand is an error, then an error will be propagated to the
428
+ result. If the input types mismatch or the ranks do not match, then the
429
+ result is an error.
430
430
}];
431
431
432
432
let arguments = (ins Shape_ShapeOrSizeType:$lhs, Shape_ShapeOrSizeType:$rhs);
0 commit comments