MLIR  20.0.0git
Utils.cpp
Go to the documentation of this file.
1 //===- Utils.cpp - Utilities to support the Tensor dialect ----------------===//
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 implements utilities for the Tensor dialect.
10 //
11 //===----------------------------------------------------------------------===//
12 
14 
21 
22 using namespace mlir;
23 using namespace mlir::tensor;
24 
25 PadOp mlir::tensor::createPadHighOp(RankedTensorType resType, Value source,
26  Value pad, bool nofold, Location loc,
27  OpBuilder &b,
28  SmallVector<Value> dynOutDims) {
29 
30  assert(((resType.getNumDynamicDims() == dynOutDims.size()) ||
31  dynOutDims.empty()) &&
32  "Either none or all output dynamic dims must be specified!");
33 
34  // Init "low" and "high" padding values ("low" is kept as is, "high" is
35  // computed below).
36  SmallVector<OpFoldResult> low(resType.getRank(), b.getIndexAttr(0));
37  SmallVector<OpFoldResult> high(resType.getRank(), b.getIndexAttr(0));
38 
39  size_t outDimIdx = 0;
40 
41  for (const auto [idx, val] : enumerate(resType.getShape())) {
42  bool isDimDynamic = ShapedType::isDynamic(val);
43  bool updatePadHigh = !isDimDynamic || !dynOutDims.empty();
44 
45  // Keep the default padding width (i.e. "0") when the output dim is dynamic
46  // and no actual output sizes have been provided.
47  if (!updatePadHigh)
48  continue;
49 
50  // Compute the padding width: resDim - sourceDim.
51  AffineExpr d0, d1;
52  bindDims(b.getContext(), d0, d1);
53  OpFoldResult sourceDim = tensor::getMixedSize(b, loc, source, idx);
54  OpFoldResult outDim = isDimDynamic ? OpFoldResult(dynOutDims[outDimIdx++])
55  : OpFoldResult(b.getIndexAttr(val));
56 
57  high[idx] = affine::makeComposedFoldedAffineApply(b, loc, d0 - d1,
58  {outDim, sourceDim});
59  }
60  return b.create<PadOp>(loc, resType, source, low, high, pad, nofold);
61 }
62 
64  Location loc,
65  Value rankedTensor) {
66  auto tensorTy = cast<RankedTensorType>(rankedTensor.getType());
67  SmallVector<Value> dynamicDims;
68  for (const auto &en : llvm::enumerate(tensorTy.getShape())) {
69  if (en.value() == ShapedType::kDynamic)
70  dynamicDims.push_back(
71  b.create<tensor::DimOp>(loc, rankedTensor, en.index()));
72  }
73  return dynamicDims;
74 }
75 
76 FailureOr<RankedTensorType>
77 mlir::tensor::computeTransposedType(RankedTensorType rankedTensorType,
78  ArrayRef<int64_t> transposeVector) {
79  if (transposeVector.empty())
80  return rankedTensorType;
81 
82  if (!isPermutationVector(transposeVector) ||
83  transposeVector.size() != static_cast<size_t>(rankedTensorType.getRank()))
84  return failure();
85 
86  SmallVector<int64_t> transposedShape(rankedTensorType.getShape());
87  applyPermutationToVector(transposedShape, transposeVector);
88 
89  using RTTBuilder = RankedTensorType::Builder;
90  RankedTensorType transposedTensorType =
91  RTTBuilder(rankedTensorType).setShape(transposedShape);
92  return transposedTensorType;
93 }
94 
95 /// The permutation can be obtained from two permutations:
96 /// a) Compute the permutation vector to move the last `numPackedDims` into
97 /// the `innerPosDims` of a shape of rank `rank`.
98 /// b) Compute the permutation vector to move outer dims if the
99 /// `outerPerm` parameter is not empty.
100 /// Apply (b) permutation on (a) permutation to get the final permutation.
102 computePackUnPackPerm(int64_t rank, ArrayRef<int64_t> &innerDimsPos,
103  ArrayRef<int64_t> &outerPerm,
104  PackingMetadata &packingMetadata) {
105  int64_t numPackedDims = innerDimsPos.size();
106  auto lastDims =
107  llvm::to_vector(llvm::seq<int64_t>(rank - numPackedDims, rank));
108  packingMetadata = computePackingMetadata(rank, innerDimsPos);
109  SmallVector<int64_t> innerPositionsPerm =
110  computePermutationVector(rank, lastDims, packingMetadata.insertPositions);
111 
112  SmallVector<int64_t> outerPos = packingMetadata.outerPositions;
113  if (!outerPerm.empty())
114  applyPermutationToVector(outerPos, outerPerm);
115  SmallVector<int64_t> outerPositionPerm =
116  computePermutationVector(rank, packingMetadata.outerPositions, outerPos);
117 
118  SmallVector<int64_t> packInverseDestPermutation = innerPositionsPerm;
119  applyPermutationToVector(packInverseDestPermutation, outerPositionPerm);
120  return packInverseDestPermutation;
121 }
122 
124 
125  PackingMetadata pMetadata;
126  int64_t packedRank = packOp.getDestType().getRank();
127  ArrayRef<int64_t> innerDimPos = packOp.getInnerDimsPos();
128  ArrayRef<int64_t> outerPerm = packOp.getOuterDimsPerm();
129  SmallVector<int64_t> packInvDestPerm =
130  computePackUnPackPerm(packedRank, innerDimPos, outerPerm, pMetadata);
131  return packInvDestPerm;
132 }
133 
135  PackingMetadata metadata;
136  return mlir::tensor::getUnPackInverseSrcPerm(unpackOp, metadata);
137 }
138 
140 mlir::tensor::getUnPackInverseSrcPerm(UnPackOp unpackOp,
141  PackingMetadata &metadata) {
142  int64_t unpackRank = unpackOp.getSourceType().getRank();
143  ArrayRef<int64_t> innerDimPos = unpackOp.getInnerDimsPos();
144  ArrayRef<int64_t> outerPerm = unpackOp.getOuterDimsPerm();
145  SmallVector<int64_t> unpackInvSrcPerm =
146  computePackUnPackPerm(unpackRank, innerDimPos, outerPerm, metadata);
147  return unpackInvSrcPerm;
148 }
149 
151  llvm::SmallBitVector droppedDims = op.getDroppedDims();
152  int64_t srcDim = 0;
153  RankedTensorType resultType = op.getDestType();
154  // Source dims and destination dims (apart from dropped dims) must have the
155  // same size.
156  for (int64_t resultDim = 0; resultDim < resultType.getRank(); ++resultDim) {
157  if (droppedDims.test(resultDim)) {
158  // InsertSlice may expand unit dimensions that result from inserting a
159  // size-1 slice into a non-size-1 result dimension.
160  if (resultType.getDimSize(resultDim) != 1)
161  return false;
162  continue;
163  }
164  FailureOr<bool> equalDimSize = ValueBoundsConstraintSet::areEqual(
165  {op.getSource(), srcDim}, {op.getResult(), resultDim});
166  if (failed(equalDimSize) || !*equalDimSize)
167  return false;
168  ++srcDim;
169  }
170 
171  return true;
172 }
173 
174 bool mlir::tensor::isCastLikeExtractSliceOp(ExtractSliceOp op) {
175  llvm::SmallBitVector droppedDims = op.getDroppedDims();
176  int64_t resultDim = 0;
177  // Source dims and result dims (apart from dropped dims) must have the same
178  // size.
179  RankedTensorType sourceType = op.getSourceType();
180  for (int64_t dim = 0, e = sourceType.getRank(); dim < e; ++dim) {
181  if (droppedDims.test(dim)) {
182  // ExtractSlice may drop unit dimensions that result from taking a size-1
183  // slice from a non-size-1 source dimension.
184  if (sourceType.getDimSize(dim) != 1)
185  return false;
186  continue;
187  }
188  FailureOr<bool> equalDimSize = ValueBoundsConstraintSet::areEqual(
189  {op.getSource(), dim}, {op.getResult(), resultDim});
190  if (failed(equalDimSize) || !*equalDimSize)
191  return false;
192  ++resultDim;
193  }
194 
195  return true;
196 }
static SmallVector< int64_t > computePackUnPackPerm(int64_t rank, ArrayRef< int64_t > &innerDimsPos, ArrayRef< int64_t > &outerPerm, PackingMetadata &packingMetadata)
The permutation can be obtained from two permutations: a) Compute the permutation vector to move the ...
Definition: Utils.cpp:102
Base type for affine expression.
Definition: AffineExpr.h:68
IntegerAttr getIndexAttr(int64_t value)
Definition: Builders.cpp:148
MLIRContext * getContext() const
Definition: Builders.h:55
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
Definition: Location.h:66
This class helps build Operations.
Definition: Builders.h:215
Operation * create(const OperationState &state)
Creates an operation given the fields represented as an OperationState.
Definition: Builders.cpp:497
This class represents a single result from folding an operation.
Definition: OpDefinition.h:268
OpResult getResult(unsigned idx)
Get the 'idx'th result of this operation.
Definition: Operation.h:402
This is a builder type that keeps local references to arguments.
Definition: BuiltinTypes.h:261
Builder & setShape(ArrayRef< int64_t > newShape)
Definition: BuiltinTypes.h:272
static FailureOr< bool > areEqual(const Variable &var1, const Variable &var2)
Compute whether the given variables are equal.
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
Definition: Value.h:96
Type getType() const
Return the type of this value.
Definition: Value.h:129
OpFoldResult makeComposedFoldedAffineApply(OpBuilder &b, Location loc, AffineMap map, ArrayRef< OpFoldResult > operands)
Constructs an AffineApplyOp that applies map to operands after composing the map with the maps of any...
Definition: AffineOps.cpp:1192
constexpr void enumerate(std::tuple< Tys... > &tuple, CallbackT &&callback)
Definition: Matchers.h:344
SmallVector< int64_t > getUnPackInverseSrcPerm(tensor::UnPackOp unpackOp)
Shell function to compute the Source Permutation of unPackOp.
SmallVector< Value > createDynamicDimValues(OpBuilder &b, Location loc, Value rankedTensor)
Definition: Utils.cpp:63
bool isCastLikeInsertSliceOp(InsertSliceOp op)
A tensor.insert_slice is a cast-like operation if it merely rank-extends the source tensor or inserts...
Definition: Utils.cpp:150
bool isCastLikeExtractSliceOp(ExtractSliceOp op)
A tensor.extract_slice is a cast-like operation if it merely rank-reduces unit dimensions of the sour...
Definition: Utils.cpp:174
OpFoldResult getMixedSize(OpBuilder &builder, Location loc, Value value, int64_t dim)
Return the dimension of the given tensor value.
Definition: TensorOps.cpp:55
SmallVector< int64_t > getPackInverseDestPerm(tensor::PackOp packOp)
Shell function to compute the Destination Permutation of PackOp This function uses the helper functio...
PadOp createPadHighOp(RankedTensorType resType, Value source, Value pad, bool nofold, Location loc, OpBuilder &builder, SmallVector< Value > dynOutDim={})
Definition: Utils.cpp:25
FailureOr< RankedTensorType > computeTransposedType(RankedTensorType rankedTensorType, ArrayRef< int64_t > transposeVector)
Returns the transposed rankedTensorType if transposeVector is non-empty.
Definition: Utils.cpp:77
Include the generated interface declarations.
void bindDims(MLIRContext *ctx, AffineExprTy &...exprs)
Bind a list of AffineExpr references to DimExpr at positions: [0 .
Definition: AffineExpr.h:348
SmallVector< int64_t > computePermutationVector(int64_t permSize, ArrayRef< int64_t > positions, ArrayRef< int64_t > desiredPositions)
Return a permutation vector of size permSize that would result in moving positions into desiredPositi...
void applyPermutationToVector(SmallVector< T, N > &inVec, ArrayRef< int64_t > permutation)
Apply the permutation defined by permutation to inVec.
bool isPermutationVector(ArrayRef< int64_t > interchange)
Method to check if an interchange vector is a permutation.