[Mlir-commits] [mlir] 017c75b - [mlir] Fix typo in test vector transform pass descriptions (#118194)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Sat Nov 30 22:48:06 PST 2024


Author: Kai Sasaki
Date: 2024-12-01T15:48:02+09:00
New Revision: 017c75bfacdfa25594f8212a427627cff7aa98f3

URL: https://github.com/llvm/llvm-project/commit/017c75bfacdfa25594f8212a427627cff7aa98f3
DIFF: https://github.com/llvm/llvm-project/commit/017c75bfacdfa25594f8212a427627cff7aa98f3.diff

LOG: [mlir] Fix typo in test vector transform pass descriptions (#118194)

Fix some typos in the description of vector transform passes.

Added: 
    

Modified: 
    mlir/test/lib/Dialect/Vector/TestVectorTransforms.cpp

Removed: 
    


################################################################################
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