We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74f5548 commit e4cff3cCopy full SHA for e4cff3c
mlir/lib/Dialect/Vector/IR/ScalableValueBoundsConstraintSet.cpp
@@ -106,14 +106,12 @@ ScalableValueBoundsConstraintSet::computeScalableBound(
106
107
AffineMap bound = [&] {
108
if (boundType == BoundType::EQ && !invalidBound(lowerBound) &&
109
- lowerBound[0] == upperBound[0]) {
+ lowerBound[0] == upperBound[0])
110
return lowerBound[0];
111
- }
112
- if (boundType == BoundType::LB && !invalidBound(lowerBound)) {
+ if (boundType == BoundType::LB && !invalidBound(lowerBound))
113
114
- } else if (boundType == BoundType::UB && !invalidBound(upperBound)) {
+ if (boundType == BoundType::UB && !invalidBound(upperBound))
115
return upperBound[0];
116
117
return AffineMap{};
118
}();
119
0 commit comments