Skip to content

Commit f494302

Browse files
committed
Minor change
1 parent 8b22d7e commit f494302

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,7 @@ def PadTilingInterfaceOp : Op<Transform_Dialect, "structured.pad_tiling_interfac
11911191
iteration domain induces a padding of the operands that is consistent
11921192
across the op semantics and, unlike for simple elementwise ops, may not be
11931193
trivially deducible or specifiable on operands only (e.g. convolutions).
1194-
Currently, only a limited set of projected permutation map is supported.
1194+
Currently, only a limited set of projected permutation maps are supported.
11951195

11961196
The specification of `padding_sizes` follows that of `tile_sizes` during
11971197
tiling: the value "0" on a particular iterator encode "no padding". Like in

mlir/include/mlir/Dialect/Linalg/Transforms/Transforms.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ LogicalResult rewriteAsPaddedOp(RewriterBase &rewriter, LinalgOp opToPad,
614614
/// The padded shape is computed by evaluating the maximum accessed index per
615615
/// dimension, which may involve multiplying by constant factors derived from
616616
/// the affine indexing expressions. Currently, only a limited set of projected
617-
/// permuation indexing map is supported, such as
617+
/// permuation indexing maps are supported, such as
618618
/// - affine_map<(d0, d1, d2) -> (d0, d1)>
619619
/// - affine_map<(d0, d1, d2) -> (d0, d1 + d2)>
620620
/// - affine_map<(d0, d1) -> (d0 * 3 + d1)>

mlir/lib/Dialect/Linalg/Transforms/PadTilingInterface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ static int64_t extractConstantMultiplier(AffineExpr expr) {
8888
/// The padded shape is computed by evaluating the maximum accessed index per
8989
/// dimension, which may involve multiplying by constant factors derived from
9090
/// the affine indexing expressions. Currently, only a limited set of projected
91-
/// permutation indexing map is supported, such as
91+
/// permutation indexing maps are supported, such as
9292
/// - affine_map<(d0, d1, d2) -> (d0, d1)>
9393
/// - affine_map<(d0, d1, d2) -> (d0, d1 + d2)>
9494
/// - affine_map<(d0, d1) -> (d0 * 3 + d1)>

0 commit comments

Comments
 (0)