Skip to content

Commit

Permalink
Fix typo in error message (openxla#2128)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghpvnist authored Mar 27, 2024
1 parent e280569 commit f4459e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stablehlo/dialect/TypeInference.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1624,7 +1624,7 @@ LogicalResult inferConcatenateOp(std::optional<Location> location,
auto type = inputTypes[i].cast<RankedTensorType>();
if (type.getRank() != rank)
return emitOptionalError(location, "operands (0) and (", i,
") do not match rank rank");
") do not match rank");

auto witnessShape = witnessType.getShape();
auto shape = type.getShape();
Expand Down

0 comments on commit f4459e7

Please sign in to comment.