Skip to content

Commit bacf312

Browse files
authored
[mlir][Linalg] Fix match convolution message (llvm#106197)
Fix the message part of bugfix commit `2ef3dcf`.
1 parent c0ebc18 commit bacf312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/Linalg/IR/LinalgInterfaces.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ mlir::linalg::detail::getMatchConvolutionMessage(MatchConvolutionResult res) {
919919
case MatchConvolutionResult::NonOutputDimNotReduction:
920920
return "expected all iterators not used to access outputs to be reduction";
921921
case MatchConvolutionResult::EmptyConvolvedDims:
922-
return "FIXME";
922+
return "expected convolved dim to be non-empty";
923923
case MatchConvolutionResult::Success:
924924
return "";
925925
}

0 commit comments

Comments
 (0)