MLIR  19.0.0git
ComposeSubView.cpp
Go to the documentation of this file.
1 //===- ComposeSubView.cpp - Combining composed subview ops ----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file contains patterns for combining composed subview ops (i.e. subview
10 // of a subview becomes a single subview).
11 //
12 //===----------------------------------------------------------------------===//
13 
18 #include "mlir/IR/OpDefinition.h"
19 #include "mlir/IR/PatternMatch.h"
22 
23 using namespace mlir;
24 
25 namespace {
26 
27 // Replaces a subview of a subview with a single subview(both static and dynamic
28 // offsets are supported).
29 struct ComposeSubViewOpPattern : public OpRewritePattern<memref::SubViewOp> {
31 
32  LogicalResult matchAndRewrite(memref::SubViewOp op,
33  PatternRewriter &rewriter) const override {
34  // 'op' is the 'SubViewOp' we're rewriting. 'sourceOp' is the op that
35  // produces the input of the op we're rewriting (for 'SubViewOp' the input
36  // is called the "source" value). We can only combine them if both 'op' and
37  // 'sourceOp' are 'SubViewOp'.
38  auto sourceOp = op.getSource().getDefiningOp<memref::SubViewOp>();
39  if (!sourceOp)
40  return failure();
41 
42  // A 'SubViewOp' can be "rank-reducing" by eliminating dimensions of the
43  // output memref that are statically known to be equal to 1. We do not
44  // allow 'sourceOp' to be a rank-reducing subview because then our two
45  // 'SubViewOp's would have different numbers of offset/size/stride
46  // parameters (just difficult to deal with, not impossible if we end up
47  // needing it).
48  if (sourceOp.getSourceType().getRank() != sourceOp.getType().getRank()) {
49  return failure();
50  }
51 
52  // Offsets, sizes and strides OpFoldResult for the combined 'SubViewOp'.
53  SmallVector<OpFoldResult> offsets, sizes, strides,
54  opStrides = op.getMixedStrides(),
55  sourceStrides = sourceOp.getMixedStrides();
56 
57  // The output stride in each dimension is equal to the product of the
58  // dimensions corresponding to source and op.
59  int64_t sourceStrideValue;
60  for (auto &&[opStride, sourceStride] :
61  llvm::zip(opStrides, sourceStrides)) {
62  Attribute opStrideAttr = dyn_cast_if_present<Attribute>(opStride);
63  Attribute sourceStrideAttr = dyn_cast_if_present<Attribute>(sourceStride);
64  if (!opStrideAttr || !sourceStrideAttr)
65  return failure();
66  sourceStrideValue = cast<IntegerAttr>(sourceStrideAttr).getInt();
67  strides.push_back(rewriter.getI64IntegerAttr(
68  cast<IntegerAttr>(opStrideAttr).getInt() * sourceStrideValue));
69  }
70 
71  // The rules for calculating the new offsets and sizes are:
72  // * Multiple subview offsets for a given dimension compose additively.
73  // ("Offset by m and Stride by k" followed by "Offset by n" == "Offset by
74  // m + n * k")
75  // * Multiple sizes for a given dimension compose by taking the size of the
76  // final subview and ignoring the rest. ("Take m values" followed by "Take
77  // n values" == "Take n values") This size must also be the smallest one
78  // by definition (a subview needs to be the same size as or smaller than
79  // its source along each dimension; presumably subviews that are larger
80  // than their sources are disallowed by validation).
81  for (auto &&[opOffset, sourceOffset, sourceStride, opSize] :
82  llvm::zip(op.getMixedOffsets(), sourceOp.getMixedOffsets(),
83  sourceOp.getMixedStrides(), op.getMixedSizes())) {
84  // We only support static sizes.
85  if (opSize.is<Value>()) {
86  return failure();
87  }
88  sizes.push_back(opSize);
89  Attribute opOffsetAttr = llvm::dyn_cast_if_present<Attribute>(opOffset),
90  sourceOffsetAttr =
91  llvm::dyn_cast_if_present<Attribute>(sourceOffset),
92  sourceStrideAttr =
93  llvm::dyn_cast_if_present<Attribute>(sourceStride);
94  if (opOffsetAttr && sourceOffsetAttr) {
95 
96  // If both offsets are static we can simply calculate the combined
97  // offset statically.
98  offsets.push_back(rewriter.getI64IntegerAttr(
99  cast<IntegerAttr>(opOffsetAttr).getInt() *
100  cast<IntegerAttr>(sourceStrideAttr).getInt() +
101  cast<IntegerAttr>(sourceOffsetAttr).getInt()));
102  } else {
103  AffineExpr expr;
104  SmallVector<Value> affineApplyOperands;
105 
106  // Make 'expr' add 'sourceOffset'.
107  if (auto attr = llvm::dyn_cast_if_present<Attribute>(sourceOffset)) {
108  expr =
109  rewriter.getAffineConstantExpr(cast<IntegerAttr>(attr).getInt());
110  } else {
111  expr = rewriter.getAffineSymbolExpr(affineApplyOperands.size());
112  affineApplyOperands.push_back(sourceOffset.get<Value>());
113  }
114 
115  // Multiply 'opOffset' by 'sourceStride' and make the 'expr' add the
116  // result.
117  if (auto attr = llvm::dyn_cast_if_present<Attribute>(opOffset)) {
118  expr = expr + cast<IntegerAttr>(attr).getInt() *
119  cast<IntegerAttr>(sourceStrideAttr).getInt();
120  } else {
121  expr =
122  expr + rewriter.getAffineSymbolExpr(affineApplyOperands.size()) *
123  cast<IntegerAttr>(sourceStrideAttr).getInt();
124  affineApplyOperands.push_back(opOffset.get<Value>());
125  }
126 
127  AffineMap map = AffineMap::get(0, affineApplyOperands.size(), expr);
128  Value result = rewriter.create<affine::AffineApplyOp>(
129  op.getLoc(), map, affineApplyOperands);
130  offsets.push_back(result);
131  }
132  }
133 
134  // This replaces 'op' but leaves 'sourceOp' alone; if it no longer has any
135  // uses it can be removed by a (separate) dead code elimination pass.
136  rewriter.replaceOpWithNewOp<memref::SubViewOp>(
137  op, op.getType(), sourceOp.getSource(), offsets, sizes, strides);
138  return success();
139  }
140 };
141 
142 } // namespace
143 
145  MLIRContext *context) {
146  patterns.add<ComposeSubViewOpPattern>(context);
147 }
Base type for affine expression.
Definition: AffineExpr.h:69
A multi-dimensional affine map Affine map's are immutable like Type's, and they are uniqued.
Definition: AffineMap.h:47
static AffineMap get(MLIRContext *context)
Returns a zero result affine map with no dimensions or symbols: () -> ().
Attributes are known-constant values of operations.
Definition: Attributes.h:25
AffineExpr getAffineSymbolExpr(unsigned position)
Definition: Builders.cpp:375
AffineExpr getAffineConstantExpr(int64_t constant)
Definition: Builders.cpp:379
IntegerAttr getI64IntegerAttr(int64_t value)
Definition: Builders.cpp:128
MLIRContext is the top-level object for a collection of MLIR operations.
Definition: MLIRContext.h:60
Operation * create(const OperationState &state)
Creates an operation given the fields represented as an OperationState.
Definition: Builders.cpp:464
Location getLoc()
The source location the operation was defined or derived from.
Definition: Operation.h:223
A special type of RewriterBase that coordinates the application of a rewrite pattern on the current I...
Definition: PatternMatch.h:785
RewritePatternSet & add(ConstructorArg &&arg, ConstructorArgs &&...args)
Add an instance of each of the pattern types 'Ts' to the pattern list with the given arguments.
Definition: PatternMatch.h:846
OpTy replaceOpWithNewOp(Operation *op, Args &&...args)
Replace the results of the given (original) op with a new op that is created without verification (re...
Definition: PatternMatch.h:536
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
Definition: Value.h:96
void populateComposeSubViewPatterns(RewritePatternSet &patterns, MLIRContext *context)
Include the generated interface declarations.
LogicalResult failure(bool isFailure=true)
Utility function to generate a LogicalResult.
Definition: LogicalResult.h:62
LogicalResult success(bool isSuccess=true)
Utility function to generate a LogicalResult.
Definition: LogicalResult.h:56
This class represents an efficient way to signal success or failure.
Definition: LogicalResult.h:26
OpRewritePattern is a wrapper around RewritePattern that allows for matching and rewriting against an...
Definition: PatternMatch.h:358
OpRewritePattern(MLIRContext *context, PatternBenefit benefit=1, ArrayRef< StringRef > generatedNames={})
Patterns must specify the root operation name they match against, and can also specify the benefit of...
Definition: PatternMatch.h:362