[Mlir-commits] [mlir] [mlir] add a chapter on matchers to the transform dialect tutorial (PR #76725)

Andrzej WarzyƄski llvmlistbot at llvm.org
Sun Jan 7 10:50:38 PST 2024


================
@@ -0,0 +1,578 @@
+# Chapter 4: Matching Payload with Transform Operations
+
+**Check the continuously-tested version of MLIR files under
+[mlir/test/Examples/transform/Ch4](https://github.com/llvm/llvm-project/tree/main/mlir/test/Examples/transform/Ch4).**
+
+Up until now, we were applying transform dialect scripts under the assumption
+that specific payload operations are identified by the caller when the transform
+dialect interpreter is invoked. This may be seen as contrary to the idea of
+driving transformations from a dialect since the transformation targets must be
+identified by the caller in C++. It also adds practical overhead due to
----------------
banach-space wrote:

This comment about C++ is a bit confusing - in chapter 1 one specifies the argument bindings on the command line rather than in C++. Could you expand a bit?

https://github.com/llvm/llvm-project/pull/76725


More information about the Mlir-commits mailing list