[Mlir-commits] [mlir] b7d462a - [mlir][transform][tutorial] Fix typo in inline code snippet. (NFC)
Ingo Müller
llvmlistbot at llvm.org
Mon Jul 10 03:38:38 PDT 2023
Author: Ingo Müller
Date: 2023-07-10T10:38:33Z
New Revision: b7d462a72961671f69287c59a276375278ec2cdc
URL: https://github.com/llvm/llvm-project/commit/b7d462a72961671f69287c59a276375278ec2cdc
DIFF: https://github.com/llvm/llvm-project/commit/b7d462a72961671f69287c59a276375278ec2cdc.diff
LOG: [mlir][transform][tutorial] Fix typo in inline code snippet. (NFC)
Reviewed By: ingomueller-net
Differential Revision: https://reviews.llvm.org/D154828
Added:
Modified:
mlir/docs/Tutorials/transform/Ch3.md
Removed:
################################################################################
diff --git a/mlir/docs/Tutorials/transform/Ch3.md b/mlir/docs/Tutorials/transform/Ch3.md
index 1a4d787d98164e..4e9d1e61e5e12f 100644
--- a/mlir/docs/Tutorials/transform/Ch3.md
+++ b/mlir/docs/Tutorials/transform/Ch3.md
@@ -2,7 +2,7 @@
## Type Constraints and ApplyEach Trait
-A transform operation that applies to each payload operation individually and requires it to be of a specific kind is a repeated pattern. One can use Transform dialect types to specify the preconditions of the type. Specifically, we can change the expected operand type from the wide `TransformHandleTypeInterface` to the more narrow `Transform_ConcreteOp<"func.call">`. Furthermore, we use the `TransformEachOpTrait` trait to provide the skeleton implementation of the `apply` method that performs verification, iteration over payloads and result concatenation. The improved ODS op definition is as follows.
+A transform operation that applies to each payload operation individually and requires it to be of a specific kind is a repeated pattern. One can use Transform dialect types to specify the preconditions of the type. Specifically, we can change the expected operand type from the wide `TransformHandleTypeInterface` to the more narrow `Transform_ConcreteOp<"func.call">`. Furthermore, we use the `TransformEachOpTrait` trait to provide the skeleton implementation of the `apply` method that performs verification, iteration over payloads and result concatenation. The improved ODS op definition is as follows.
```tablegen
// In MyExtension.td.
More information about the Mlir-commits
mailing list