[mlir][Vector] Relax condition for `splitFullAndPartialTransferPrecondition`
authorNicolas Vasilache <ntv@google.com>
Tue, 4 Aug 2020 13:49:32 +0000 (09:49 -0400)
committerNicolas Vasilache <ntv@google.com>
Tue, 4 Aug 2020 14:06:21 +0000 (10:06 -0400)
The `splitFullAndPartialTransferPrecondition` has a restrictive condition to
prevent the pattern to be applied recursively if it is nested under an scf.IfOp.
Relaxing the condition to the immediate parent op must not be an scf.IfOp lets
the pattern be applied more generally while still preventing recursion.

Differential Revision: https://reviews.llvm.org/D85209

mlir/lib/Dialect/Vector/VectorTransforms.cpp

index 3c23c5a..33fbed6 100644 (file)
@@ -2049,10 +2049,10 @@ LogicalResult mlir::vector::splitFullAndPartialTransferPrecondition(
   // Must have some masked dimension to be a candidate for splitting.
   if (!xferOp.hasMaskedDim())
     return failure();
-  // Don't split transfer operations under IfOp, this avoids applying the
-  // pattern recursively.
-  // TODO: improve the condition to make it more applicable.
-  if (xferOp.getParentOfType<scf::IfOp>())
+  // Don't split transfer operations directly under IfOp, this avoids applying
+  // the pattern recursively.
+  // TODO: improve the filtering condition to make it more applicable.
+  if (isa<scf::IfOp>(xferOp.getOperation()->getParentOp()))
     return failure();
   return success();
 }