[Mlir-commits] [mlir] 87f9e1b - [MLIR] Fix some typos in AffineOps.td (NFC)
Mehdi Amini
llvmlistbot at llvm.org
Tue Oct 28 09:57:43 PDT 2025
Author: Mehdi Amini
Date: 2025-10-28T09:57:12-07:00
New Revision: 87f9e1b17afefd461e7ce07f817183c55b0a5571
URL: https://github.com/llvm/llvm-project/commit/87f9e1b17afefd461e7ce07f817183c55b0a5571
DIFF: https://github.com/llvm/llvm-project/commit/87f9e1b17afefd461e7ce07f817183c55b0a5571.diff
LOG: [MLIR] Fix some typos in AffineOps.td (NFC)
Added:
Modified:
mlir/include/mlir/Dialect/Affine/IR/AffineOps.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/Affine/IR/AffineOps.td b/mlir/include/mlir/Dialect/Affine/IR/AffineOps.td
index 12a79358d42f1..409bd05292e0d 100644
--- a/mlir/include/mlir/Dialect/Affine/IR/AffineOps.td
+++ b/mlir/include/mlir/Dialect/Affine/IR/AffineOps.td
@@ -714,7 +714,7 @@ def AffineParallelOp : Affine_Op<"parallel",
operand_range getUpperBoundsOperands();
AffineValueMap getUpperBoundsValueMap();
- /// Sets elements fo the loop upper bound.
+ /// Sets elements of the loop upper bound.
void setUpperBounds(ValueRange operands, AffineMap map);
void setSteps(ArrayRef<int64_t> newSteps);
@@ -999,7 +999,7 @@ def AffineVectorStoreOp : AffineStoreOpBase<"vector_store"> {
elemental type, supplied as its second operand.
The index for each memref dimension is an affine expression of loop
induction variables and symbols. These indices determine the start position
- of the write within the memref. The shape of th input vector determines the
+ of the write within the memref. The shape of the input vector determines the
shape of the slice written to the memref. This slice is contiguous along the
respective dimensions of the shape. Strided vector stores will be supported
in the future.
@@ -1188,7 +1188,7 @@ def AffineLinearizeIndexOp : Affine_Op<"linearize_index",
If all `N` basis elements are provided, the linearize_index operation is said to
"have an outer bound".
- As a convenience, and for symmetry with `getPaddedBasis()`, ifg the first
+ As a convenience, and for symmetry with `getPaddedBasis()`, if the first
element of a set of `OpFoldResult`s passed to the builders of this operation is
`nullptr`, that element is ignored.
More information about the Mlir-commits
mailing list