[Mlir-commits] [mlir] e494bcd - [mlir] small cleanup of transform dialect docs
Alex Zinenko
llvmlistbot at llvm.org
Wed May 31 01:19:52 PDT 2023
Author: Alex Zinenko
Date: 2023-05-31T08:19:45Z
New Revision: e494bcd60ddc694cced258256a08c944ccacdc81
URL: https://github.com/llvm/llvm-project/commit/e494bcd60ddc694cced258256a08c944ccacdc81
DIFF: https://github.com/llvm/llvm-project/commit/e494bcd60ddc694cced258256a08c944ccacdc81.diff
LOG: [mlir] small cleanup of transform dialect docs
Added:
Modified:
mlir/docs/Dialects/Transform.md
Removed:
################################################################################
diff --git a/mlir/docs/Dialects/Transform.md b/mlir/docs/Dialects/Transform.md
index f49444a801de3..15eb31abeb9f1 100644
--- a/mlir/docs/Dialects/Transform.md
+++ b/mlir/docs/Dialects/Transform.md
@@ -172,12 +172,12 @@ effects on these resources.
* `TransformMappingResource` - side effect resource corresponding to the
mapping between transform IR values and payload IR operations.
-
+
- An `Allocate` effect from this resource means creating a new mapping
entry, it is always accompanied by a `Write` effect.
-
+
- A `Read` effect from this resource means accessing the mapping.
-
+
- A `Free` effect on this resource indicates the removal of the mapping
entry, typically after a transformation that modifies the payload IR
operations associated with one of the transform IR operation's
@@ -276,7 +276,7 @@ The following handle invalidation rules apply.
payload operations described above;
- value handles associated with any result of any operation described above;
-
+
- value handles associated with any argument of a block contained in a
region attached to any operation described above.
@@ -297,7 +297,7 @@ The following handle invalidation rules apply.
- value handles associated with any result of any operation described above,
including all results of the operation defining as result the value
associated with the consumed handle;
-
+
- value handles associated with any argument of a block contained in a
region attached to any operation described above.
@@ -417,6 +417,10 @@ ops rather than having the methods directly act on the payload IR.
[include "Dialects/MemRefTransformOps.md"]
+## PDL (extension) Transform Operations
+
+[include "Dialects/PDLExtensionOps.md"]
+
## Structured (Linalg) Match Operations
[include "Dialects/LinalgStructuredMatchOps.md"]
More information about the Mlir-commits
mailing list