[Mlir-commits] [mlir] [mlir] Fix typo in test vector transform pass descriptions (PR #118194)
Kai Sasaki
llvmlistbot at llvm.org
Sat Nov 30 22:23:46 PST 2024
https://github.com/Lewuathe created https://github.com/llvm/llvm-project/pull/118194
Fix some typos in the description of vector transform passes.
>From 9f11ec269f1a0ed84ba92467c6e0e5abcec957f6 Mon Sep 17 00:00:00 2001
From: Kai Sasaki <lewuathe at gmail.com>
Date: Sun, 1 Dec 2024 15:22:37 +0900
Subject: [PATCH] [mlir] Fix typo in test vector transform pass descriptions
---
mlir/test/lib/Dialect/Vector/TestVectorTransforms.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/mlir/test/lib/Dialect/Vector/TestVectorTransforms.cpp b/mlir/test/lib/Dialect/Vector/TestVectorTransforms.cpp
index 9d8969edfd90fe..f67a24755ac09a 100644
--- a/mlir/test/lib/Dialect/Vector/TestVectorTransforms.cpp
+++ b/mlir/test/lib/Dialect/Vector/TestVectorTransforms.cpp
@@ -363,7 +363,7 @@ struct TestVectorTransferCollapseInnerMostContiguousDims
}
StringRef getDescription() const final {
- return "Test lowering patterns that reducedes the rank of the vector "
+ return "Test lowering patterns that reduces the rank of the vector "
"transfer memory and vector operands.";
}
@@ -388,7 +388,7 @@ struct TestVectorSinkPatterns
StringRef getArgument() const final { return "test-vector-sink-patterns"; }
StringRef getDescription() const final {
- return "Test lowering patterns that eliminate redundant brodacast "
+ return "Test lowering patterns that eliminate redundant broadcast "
"and transpose operations.";
}
@@ -617,7 +617,7 @@ struct TestVectorDistribution
Option<bool> propagateDistribution{
*this, "propagate-distribution",
- llvm::cl::desc("Test distribution propgation"), llvm::cl::init(false)};
+ llvm::cl::desc("Test distribution propagation"), llvm::cl::init(false)};
void runOnOperation() override {
RewritePatternSet patterns(&getContext());
More information about the Mlir-commits
mailing list