Skip to content

Commit b2367cd

Browse files
committed
[mlir][tosa] Typo in transpose canonicalization message
1 parent 243e8f8 commit b2367cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/Tosa/IR/TosaCanonicalizations.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ struct TransposeIsReshape : public OpRewritePattern<tosa::TransposeOp> {
225225
for (int i = 1, s = nonZeroPerms.size(); i < s; ++i)
226226
if (nonZeroPerms[i - 1] > nonZeroPerms[i])
227227
return rewriter.notifyMatchFailure(op,
228-
"Transpose changes memeory layout.");
228+
"Transpose changes memory layout.");
229229

230230
SmallVector<int64_t> newShape;
231231
newShape.reserve(inputTy.getRank());

0 commit comments

Comments
 (0)