Skip to content

Commit 2a95bae

Browse files
committed
Fix more false positives
1 parent aa23bde commit 2a95bae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mlir/docs/Tutorials/Toy/Ch-4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ like Toy to get the information they need.
1616

1717
MLIR provides a set of always available-hooks for certain core transformations,
1818
as seen in the [previous chapter](Ch-3.md), where we registered some
19-
canonicalization via a hook on our operations (`getCanonicalizationPatterns`).
19+
canonicalizations via a hook on our operations (`getCanonicalizationPatterns`).
2020
However, these types of hooks don't really scale well. Therefore, a more generic
2121
solution was designed, in the form of [interfaces](../../Interfaces.md), to make
2222
the MLIR infrastructure as extensible as the representation. Interfaces provide

mlir/include/mlir/Dialect/Linalg/Utils/Utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ void offsetIndices(RewriterBase &b, LinalgOp linalgOp,
213213

214214
/// A struct containing the Linalg producer before and after fusion.
215215
/// When operating on tensors, `fusedProducer` may feed into a `tensor.cast`
216-
/// op before the consumer Linalg op, until enough canonicalization have
216+
/// op before the consumer Linalg op, until enough canonicalizations have
217217
/// applied.
218218
struct FusionInfo {
219219
LinalgOp originalProducer;

0 commit comments

Comments
 (0)