[Mlir-commits] [mlir] [mlir][doc] Fix transform dialect tutorial ch3 (PR #150456)
Rolf Morel
llvmlistbot at llvm.org
Fri Jul 25 08:04:21 PDT 2025
================
@@ -139,7 +139,20 @@ void MyExtension::init() {
```
This type is now directly available in the Transform dialect and can be used in operations.
+In the previous tablegen definition, the type of `$call` must be `Transform_ConcreteOp<“func.call”>`,
+now we make it can to use `CallOpInterfaceHandle`.
----------------
rolfmorel wrote:
How about
> In the previous tablegen definition, the type of `$call` must be `Transform_ConcreteOp<“func.call”>`. By adding `CallOpInterfaceHandle` as an allowed type for `$call`, the corresponding handle is allowed to be to any op implementing the interface.
https://github.com/llvm/llvm-project/pull/150456
More information about the Mlir-commits
mailing list