[Mlir-commits] [mlir] [mlir][Interfaces] Allow integer types for `ValueBoundsOpInterface` (PR #196082)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed May 6 07:15:38 PDT 2026


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp,h -- mlir/include/mlir/Dialect/Affine/Transforms/Transforms.h mlir/include/mlir/Dialect/Arith/Transforms/Transforms.h mlir/include/mlir/Dialect/Vector/IR/ScalableValueBoundsConstraintSet.h mlir/include/mlir/Interfaces/ValueBoundsOpInterface.h mlir/lib/Dialect/Affine/Transforms/ReifyValueBounds.cpp mlir/lib/Dialect/Arith/Transforms/ReifyValueBounds.cpp mlir/lib/Dialect/Linalg/Transforms/HoistPadding.cpp mlir/lib/Dialect/Linalg/Transforms/Hoisting.cpp mlir/lib/Dialect/Linalg/Transforms/Padding.cpp mlir/lib/Dialect/Linalg/Transforms/Promotion.cpp mlir/lib/Dialect/Linalg/Transforms/TilingInterfaceImpl.cpp mlir/lib/Dialect/MemRef/Transforms/IndependenceTransforms.cpp mlir/lib/Dialect/Tensor/Transforms/IndependenceTransforms.cpp mlir/lib/Dialect/Vector/IR/ScalableValueBoundsConstraintSet.cpp mlir/lib/Interfaces/ValueBoundsOpInterface.cpp mlir/test/lib/Dialect/Affine/TestReifyValueBounds.cpp mlir/test/lib/Dialect/Test/TestOpDefs.cpp --diff_from_common_commit
``````````

:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/mlir/include/mlir/Dialect/Vector/IR/ScalableValueBoundsConstraintSet.h b/mlir/include/mlir/Dialect/Vector/IR/ScalableValueBoundsConstraintSet.h
index 3a03eef88..b32f4a777 100644
--- a/mlir/include/mlir/Dialect/Vector/IR/ScalableValueBoundsConstraintSet.h
+++ b/mlir/include/mlir/Dialect/Vector/IR/ScalableValueBoundsConstraintSet.h
@@ -35,7 +35,7 @@ struct ScalableValueBoundsConstraintSet
       unsigned vscaleMin, unsigned vscaleMax, ValueBoundsOptions options = {})
       : RTTIExtends(context, stopCondition, options,
                     /*addConservativeSemiAffineBounds=*/true),
-        vscaleMin(vscaleMin), vscaleMax(vscaleMax){};
+        vscaleMin(vscaleMin), vscaleMax(vscaleMax) {};
 
   using RTTIExtends::bound;
   using RTTIExtends::StopConditionFn;

``````````

</details>


https://github.com/llvm/llvm-project/pull/196082


More information about the Mlir-commits mailing list