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 57cae2b commit 1b6d404Copy full SHA for 1b6d404
mlir/lib/Dialect/Vector/IR/ScalableValueBoundsConstraintSet.cpp
@@ -108,7 +108,8 @@ ScalableValueBoundsConstraintSet::computeScalableBound(
108
if (boundType == BoundType::EQ && !invalidBound(lowerBound) &&
109
lowerBound[0] == upperBound[0]) {
110
return lowerBound[0];
111
- } else if (boundType == BoundType::LB && !invalidBound(lowerBound)) {
+ }
112
+ if (boundType == BoundType::LB && !invalidBound(lowerBound)) {
113
114
} else if (boundType == BoundType::UB && !invalidBound(upperBound)) {
115
return upperBound[0];
0 commit comments