[Mlir-commits] [mlir] 4b45999 - [mlir] fix crossed transform dialect patches

Alex Zinenko llvmlistbot at llvm.org
Fri Aug 12 08:48:19 PDT 2022


Author: Alex Zinenko
Date: 2022-08-12T15:48:15Z
New Revision: 4b45999bdd7560c699361c995e58aaa081976db2

URL: https://github.com/llvm/llvm-project/commit/4b45999bdd7560c699361c995e58aaa081976db2
DIFF: https://github.com/llvm/llvm-project/commit/4b45999bdd7560c699361c995e58aaa081976db2.diff

LOG: [mlir] fix crossed transform dialect patches

One patch added a use of the IR syntax that was changed by another.

Added: 
    

Modified: 
    mlir/test/Dialect/Linalg/transform-op-match.mlir

Removed: 
    


################################################################################
diff  --git a/mlir/test/Dialect/Linalg/transform-op-match.mlir b/mlir/test/Dialect/Linalg/transform-op-match.mlir
index 9e2341b931b9..2696cf5b16ef 100644
--- a/mlir/test/Dialect/Linalg/transform-op-match.mlir
+++ b/mlir/test/Dialect/Linalg/transform-op-match.mlir
@@ -43,7 +43,7 @@ func.func @match_complex_attribute(%arg0: tensor<12x128x32xf32>)
 
 transform.with_pdl_patterns {
 ^bb0(%arg0: !pdl.operation):
-  transform.sequence %arg0 {
+  transform.sequence %arg0 failures(propagate) {
   ^bb1(%arg1: !pdl.operation):
     %match_attr = transform.structured.match
         ops{["linalg.generic"]}


        


More information about the Mlir-commits mailing list