[Mlir-commits] [mlir] Make createReadOrMaskedRead a utility (PR #89119)
Matthias Springer
llvmlistbot at llvm.org
Thu Apr 18 01:23:55 PDT 2024
================
@@ -1593,3 +1593,40 @@ void linalg::populateDecomposeConvolutionPatterns(RewritePatternSet &patterns,
DownscaleSizeOneWindowed2DConvolution<PoolingNchwMaxOp, PoolingNcwMaxOp>>(
patterns.getContext(), benefit);
}
+
+Value mlir::linalg::createReadOrMaskedRead(OpBuilder &builder, Location loc,
+ Value source,
+ ArrayRef<int64_t> readShape,
+ Value padValue, bool doMasking) {
+ assert(llvm::none_of(readShape,
+ [](int64_t s) { return s == ShapedType::kDynamic; }));
+ auto sourceShape = dyn_cast<ShapedType>(source.getType()).getShape();
+ assert(sourceShape.size() == readShape.size());
+ auto maskType = VectorType::get(readShape, builder.getI1Type());
+ auto vectorType = VectorType::get(readShape, padValue.getType());
----------------
matthias-springer wrote:
I'd also put an `assert(padValue.getType() == shapedType.getElementType() && "expected same pad element type to match source element type")`.
https://github.com/llvm/llvm-project/pull/89119
More information about the Mlir-commits
mailing list