Files
clang-p2996/mlir/test/Examples/transform/Ch3/invalid.mlir
Alex Zinenko 68ae0d7803 [mlir] add initial chapters of the transform dialect tutorial
The transform dialect has been around for a while and is sufficiently
stable at this point. Add the first three chapters of the tutorial
describing its usage and extension.

Reviewed By: springerm

Differential Revision: https://reviews.llvm.org/D151491
2023-05-30 15:26:58 +00:00

11 lines
361 B
MLIR

// RUN: transform-opt-ch3 %s --test-transform-dialect-interpreter --split-input-file --verify-diagnostics
// expected-note @below {{offending operation}}
module {
transform.sequence failures(suppress) {
// expected-error @below {{expected the payload operation to implement CallOpInterface}}
^bb0(%arg0: !transform.my.call_op_interface):
yield
}
}