Skip to content

Commit 145e1b9

Browse files
committed
fixup! fixup! fixup! fixup! [mlir][vector] Remove MatrixMultiplyOp and FlatTransposeOp from Vector dialect
Fix comment
1 parent 18e7d78 commit 145e1b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/include/mlir/Dialect/Vector/Transforms/LoweringPatterns.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ void populateVectorToFromElementsToShuffleTreePatterns(
309309
/// Lowers `vector.contract` to `llvm.intr.matrix.multiply`.
310310
///
311311
/// Given the high benefit, this will be prioriotised over other
312-
/// transpose-lowering patterns. As such, the convert-vector-to-llvm pass will
312+
/// contract-lowering patterns. As such, the convert-vector-to-llvm pass will
313313
/// only run this registration conditionally.
314314
void populateVectorContractToMatrixMultiply(RewritePatternSet &patterns,
315315
PatternBenefit benefit = 100);
@@ -320,7 +320,7 @@ void populateVectorContractToMatrixMultiply(RewritePatternSet &patterns,
320320
/// Lowers `vector.transpose` to `llvm.intr.matrix.flat_transpose`.
321321
///
322322
/// Given the high benefit, this will be prioriotised over other
323-
/// contract-lowering patterns. As such, the convert-vector-to-llvm pass will
323+
/// transpose-lowering patterns. As such, the convert-vector-to-llvm pass will
324324
/// only run this registration conditionally.
325325
void populateVectorTransposeToFlatTranspose(RewritePatternSet &patterns,
326326
PatternBenefit benefit = 100);

0 commit comments

Comments
 (0)