[Mlir-commits] [mlir] 64496be - [mlir] Fix typo s/opreations/operations (#163544)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Fri Dec 26 04:03:30 PST 2025


Author: peledins-zimperium
Date: 2025-12-26T12:03:25Z
New Revision: 64496be8e0b07bbade36e68f70ee2ff002cfd0a8

URL: https://github.com/llvm/llvm-project/commit/64496be8e0b07bbade36e68f70ee2ff002cfd0a8
DIFF: https://github.com/llvm/llvm-project/commit/64496be8e0b07bbade36e68f70ee2ff002cfd0a8.diff

LOG: [mlir] Fix typo s/opreations/operations (#163544)

Added: 
    

Modified: 
    mlir/include/mlir/Analysis/DataFlow/DenseAnalysis.h
    mlir/include/mlir/Dialect/Transform/Interfaces/TransformInterfaces.h
    mlir/test/Examples/transform/ChH/full.mlir

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Analysis/DataFlow/DenseAnalysis.h b/mlir/include/mlir/Analysis/DataFlow/DenseAnalysis.h
index 5b7b45fdd1d58..82f86d06886b6 100644
--- a/mlir/include/mlir/Analysis/DataFlow/DenseAnalysis.h
+++ b/mlir/include/mlir/Analysis/DataFlow/DenseAnalysis.h
@@ -505,7 +505,7 @@ class AbstractDenseBackwardDataFlowAnalysis : public DataFlowAnalysis {
 
 /// A dense backward dataflow analysis propagating lattices after and before the
 /// execution of every operation across the IR by implementing transfer
-/// functions for opreations.
+/// functions for operations.
 ///
 /// `LatticeT` is expected to be a subclass of `AbstractDenseLattice`.
 template <typename LatticeT>

diff  --git a/mlir/include/mlir/Dialect/Transform/Interfaces/TransformInterfaces.h b/mlir/include/mlir/Dialect/Transform/Interfaces/TransformInterfaces.h
index b9f2af22e9483..8b0517a84a675 100644
--- a/mlir/include/mlir/Dialect/Transform/Interfaces/TransformInterfaces.h
+++ b/mlir/include/mlir/Dialect/Transform/Interfaces/TransformInterfaces.h
@@ -700,7 +700,7 @@ class TransformState {
   ///  - `throughValue` is the payload value the handle to which is consumed,
   ///     when it is the case, null when the operation handle is consumed
   ///     directly.
-  /// Looks at the payload opreations associated with `otherHandle` and if any
+  /// Looks at the payload operations associated with `otherHandle` and if any
   /// of these operations has an ancestor (or is itself) listed in
   /// `potentialAncestors`, records the error message describing the use of the
   /// invalidated handle. Does nothing if `otherHandle` already has a reporter

diff  --git a/mlir/test/Examples/transform/ChH/full.mlir b/mlir/test/Examples/transform/ChH/full.mlir
index d49524b529a1d..1293406d72475 100644
--- a/mlir/test/Examples/transform/ChH/full.mlir
+++ b/mlir/test/Examples/transform/ChH/full.mlir
@@ -275,7 +275,7 @@ module attributes { transform.with_named_sequence } {
 
     // Vectorize the remaining non-unit dimensions in structured operations.
     // This essentially rewrites operations on `tensor<5x64xf32>` into
-    // opreations on `vector<5x64xf32>`. Further lowering in MLIR and LLVM will
+    // operations on `vector<5x64xf32>`. Further lowering in MLIR and LLVM will
     // decompose this into a sequence of operations on single-dimensional
     // vectors of the platform-relevant size, e.g., `vector<16xf32>` for AVX512.
     // High-level vector primitives, such as `vector.transpose` and


        


More information about the Mlir-commits mailing list