[Mlir-commits] [mlir] [MLIR] Refactor to create vectorization convOp precondition check (PR #130181)
Zhuoran Yin
llvmlistbot at llvm.org
Tue Mar 11 10:20:43 PDT 2025
================
@@ -1939,6 +1939,129 @@ vectorizeInsertSliceOpPrecondition(tensor::InsertSliceOp sliceOp,
return success();
}
+namespace {
+enum class ConvOperationKind { Conv, Pool };
+} // namespace
+
+static bool isCastOfBlockArgument(Operation *op) {
+ return isa<CastOpInterface>(op) && op->getNumOperands() == 1 &&
+ isa<BlockArgument>(op->getOperand(0));
+}
+
+// Returns true iff it is a valid conv/pooling op.
----------------
jerryyin wrote:
This is done in 2b5d1dc.
I appreciate your thorough review, and have learned a lot. Thank you!
https://github.com/llvm/llvm-project/pull/130181
More information about the Mlir-commits
mailing list