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

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Oct 22 05:15:28 PDT 2025


https://github.com/peledins-zimperium updated https://github.com/llvm/llvm-project/pull/163544

>From e9df7e51f0d66caf29bb090382f774491698e311 Mon Sep 17 00:00:00 2001
From: peledins-zimperium
 <146088545+peledins-zimperium at users.noreply.github.com>
Date: Wed, 15 Oct 2025 14:19:43 +0300
Subject: [PATCH 1/3] Fix typo opreations

---
 mlir/include/mlir/Analysis/DataFlow/DenseAnalysis.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mlir/include/mlir/Analysis/DataFlow/DenseAnalysis.h b/mlir/include/mlir/Analysis/DataFlow/DenseAnalysis.h
index 8bcfe51ad7cd1..21e3193cd2e6c 100644
--- a/mlir/include/mlir/Analysis/DataFlow/DenseAnalysis.h
+++ b/mlir/include/mlir/Analysis/DataFlow/DenseAnalysis.h
@@ -459,7 +459,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>

>From b42301d328b5e7b1ec279937ed655e5d7f4748a0 Mon Sep 17 00:00:00 2001
From: peledins-zimperium
 <146088545+peledins-zimperium at users.noreply.github.com>
Date: Wed, 15 Oct 2025 14:22:04 +0300
Subject: [PATCH 2/3] Fix typo opreations

---
 .../mlir/Dialect/Transform/Interfaces/TransformInterfaces.h     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

>From 4aec24fe4e26311d48b51120a8e58e84e3e84a2c Mon Sep 17 00:00:00 2001
From: peledins-zimperium
 <146088545+peledins-zimperium at users.noreply.github.com>
Date: Wed, 15 Oct 2025 14:22:41 +0300
Subject: [PATCH 3/3] Fix typo opreations

---
 mlir/test/Examples/transform/ChH/full.mlir | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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