We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 243e8f8 commit b2367cdCopy full SHA for b2367cd
mlir/lib/Dialect/Tosa/IR/TosaCanonicalizations.cpp
@@ -225,7 +225,7 @@ struct TransposeIsReshape : public OpRewritePattern<tosa::TransposeOp> {
225
for (int i = 1, s = nonZeroPerms.size(); i < s; ++i)
226
if (nonZeroPerms[i - 1] > nonZeroPerms[i])
227
return rewriter.notifyMatchFailure(op,
228
- "Transpose changes memeory layout.");
+ "Transpose changes memory layout.");
229
230
SmallVector<int64_t> newShape;
231
newShape.reserve(inputTy.getRank());
0 commit comments