MLIR  19.0.0git
ScalableValueBoundsConstraintSet.cpp
Go to the documentation of this file.
1 //===- ScalableValueBoundsConstraintSet.cpp - Scalable Value Bounds -------===//
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 
10 
12 
13 namespace mlir::vector {
14 
15 FailureOr<ConstantOrScalableBound::BoundSize>
17  if (map.isSingleConstant())
18  return BoundSize{map.getSingleConstantResult(), /*scalable=*/false};
19  if (map.getNumResults() != 1 || map.getNumInputs() != 1)
20  return failure();
21  auto binop = dyn_cast<AffineBinaryOpExpr>(map.getResult(0));
22  if (!binop || binop.getKind() != AffineExprKind::Mul)
23  return failure();
24  auto matchConstant = [&](AffineExpr expr, int64_t &constant) -> bool {
25  if (auto cst = dyn_cast<AffineConstantExpr>(expr)) {
26  constant = cst.getValue();
27  return true;
28  }
29  return false;
30  };
31  // Match `s0 * cst` or `cst * s0`:
32  int64_t cst = 0;
33  auto lhs = binop.getLHS();
34  auto rhs = binop.getRHS();
35  if ((matchConstant(lhs, cst) && isa<AffineSymbolExpr>(rhs)) ||
36  (matchConstant(rhs, cst) && isa<AffineSymbolExpr>(lhs))) {
37  return BoundSize{cst, /*scalable=*/true};
38  }
39  return failure();
40 }
41 
43 
46  Value value, std::optional<int64_t> dim, unsigned vscaleMin,
47  unsigned vscaleMax, presburger::BoundType boundType, bool closedUB,
48  StopConditionFn stopCondition) {
49  using namespace presburger;
50  assert(vscaleMin <= vscaleMax);
51 
52  // No stop condition specified: Keep adding constraints until the worklist
53  // is empty.
54  auto defaultStopCondition = [&](Value v, std::optional<int64_t> dim,
56  return false;
57  };
58 
60  value.getContext(), stopCondition ? stopCondition : defaultStopCondition,
61  vscaleMin, vscaleMax);
62  int64_t pos = scalableCstr.insert(value, dim, /*isSymbol=*/false);
63  scalableCstr.processWorklist();
64 
65  // Project out all columns apart from vscale and the starting point
66  // (value/dim). This should result in constraints in terms of vscale only.
67  auto projectOutFn = [&](ValueDim p) {
68  bool isStartingPoint =
69  p.first == value &&
70  p.second == dim.value_or(ValueBoundsConstraintSet::kIndexValue);
71  return p.first != scalableCstr.getVscaleValue() && !isStartingPoint;
72  };
73  scalableCstr.projectOut(projectOutFn);
74 
75  assert(scalableCstr.cstr.getNumDimAndSymbolVars() ==
76  scalableCstr.positionToValueDim.size() &&
77  "inconsistent mapping state");
78 
79  // Check that the only columns left are vscale and the starting point.
80  for (int64_t i = 0; i < scalableCstr.cstr.getNumDimAndSymbolVars(); ++i) {
81  if (i == pos)
82  continue;
83  if (scalableCstr.positionToValueDim[i] !=
84  ValueDim(scalableCstr.getVscaleValue(),
86  return failure();
87  }
88  }
89 
90  SmallVector<AffineMap, 1> lowerBound(1), upperBound(1);
91  scalableCstr.cstr.getSliceBounds(pos, 1, value.getContext(), &lowerBound,
92  &upperBound, closedUB);
93 
94  auto invalidBound = [](auto &bound) {
95  return !bound[0] || bound[0].getNumResults() != 1;
96  };
97 
98  AffineMap bound = [&] {
99  if (boundType == BoundType::EQ && !invalidBound(lowerBound) &&
100  lowerBound[0] == lowerBound[0]) {
101  return lowerBound[0];
102  } else if (boundType == BoundType::LB && !invalidBound(lowerBound)) {
103  return lowerBound[0];
104  } else if (boundType == BoundType::UB && !invalidBound(upperBound)) {
105  return upperBound[0];
106  }
107  return AffineMap{};
108  }();
109 
110  if (!bound)
111  return failure();
112 
113  return ConstantOrScalableBound{bound};
114 }
115 
116 } // namespace mlir::vector
function_ref< bool(Region *, ArrayRef< bool > visited)> StopConditionFn
Stop condition for traverseRegionGraph.
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
int64_t getSingleConstantResult() const
Returns the constant result of this map.
Definition: AffineMap.cpp:365
bool isSingleConstant() const
Returns true if this affine map is a single result constant function.
Definition: AffineMap.cpp:357
unsigned getNumResults() const
Definition: AffineMap.cpp:386
unsigned getNumInputs() const
Definition: AffineMap.cpp:387
AffineExpr getResult(unsigned idx) const
Definition: AffineMap.cpp:395
This class provides support for representing a failure result, or a valid value of type T.
Definition: LogicalResult.h:78
A helper class to be used with ValueBoundsOpInterface.
static constexpr int64_t kIndexValue
Dimension identifier to indicate a value is index-typed.
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
Definition: Value.h:96
MLIRContext * getContext() const
Utility to get the associated MLIRContext that this value is defined in.
Definition: Value.h:132
BoundType
The type of bound: equal, lower bound or upper bound.
LogicalResult failure(bool isFailure=true)
Utility function to generate a LogicalResult.
Definition: LogicalResult.h:62
@ Mul
RHS of mul is always a constant or a symbolic expression.
A thin wrapper over an AffineMap which can represent a constant bound, or a scalable bound (in terms ...
FailureOr< BoundSize > getSize() const
Get the (possibly) scalable size of the bound, returns failure if the bound cannot be represented as ...
A version of ValueBoundsConstraintSet that can solve for scalable bounds.
static FailureOr< ConstantOrScalableBound > computeScalableBound(Value value, std::optional< int64_t > dim, unsigned vscaleMin, unsigned vscaleMax, presburger::BoundType boundType, bool closedUB=true, StopConditionFn stopCondition=nullptr)
Computes a (possibly) scalable bound for a given value.
Value getVscaleValue() const
Get the value of vscale. Returns nullptr vscale as not been encountered.