[Mlir-commits] [mlir] [mlir][SCF] Use Affine ops for indexing math. (PR #108450)
Han-Chung Wang
llvmlistbot at llvm.org
Tue Sep 17 04:47:29 PDT 2024
================
@@ -4534,6 +4534,140 @@ LogicalResult AffineDelinearizeIndexOp::verify() {
return success();
}
+namespace {
+
+// Drops delinearization indices that correspond to unit-extent basis
+struct DropUnitExtentBasis
+ : public OpRewritePattern<affine::AffineDelinearizeIndexOp> {
+ using OpRewritePattern::OpRewritePattern;
+
+ LogicalResult matchAndRewrite(affine::AffineDelinearizeIndexOp delinearizeOp,
+ PatternRewriter &rewriter) const override {
+ SmallVector<Value> replacements(delinearizeOp->getNumResults(), nullptr);
+ std::optional<Value> zero = std::nullopt;
+ Location loc = delinearizeOp->getLoc();
+ auto getZero = [&]() -> Value {
+ if (!zero) {
+ zero = rewriter.create<arith::ConstantIndexOp>(loc, 0);
+ }
+ return zero.value();
+ };
+
+ // Replace all indices corresponding to unit-extent basis with 0.
+ // Remaining basis can be used to get a new `affine.delinearize_index` op.
+ SmallVector<Value> newOperands;
+ for (auto [index, basis] : llvm::enumerate(delinearizeOp.getBasis())) {
+ if (matchPattern(basis, m_One())) {
----------------
hanhanW wrote:
use `isConstantIntValue(1)`?
https://github.com/llvm/llvm-project/blob/1e23a6142a827cda89fa4d8335afebd89701991d/mlir/include/mlir/Dialect/Utils/StaticValueUtils.h#L93-L94C6
https://github.com/llvm/llvm-project/pull/108450
More information about the Mlir-commits
mailing list