[Mlir-commits] [mlir] [mlir] Fix typo in test vector transform pass descriptions (PR #118194)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sat Nov 30 22:24:19 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir
Author: Kai Sasaki (Lewuathe)
<details>
<summary>Changes</summary>
Fix some typos in the description of vector transform passes.
---
Full diff: https://github.com/llvm/llvm-project/pull/118194.diff
1 Files Affected:
- (modified) mlir/test/lib/Dialect/Vector/TestVectorTransforms.cpp (+3-3)
``````````diff
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());
``````````
</details>
https://github.com/llvm/llvm-project/pull/118194
More information about the Mlir-commits
mailing list