[Mlir-commits] [mlir] [mlir][Vector] Add utility for computing scalable value bounds (PR #83876)
Benjamin Maxwell
llvmlistbot at llvm.org
Fri Mar 8 01:59:26 PST 2024
================
@@ -0,0 +1,137 @@
+// RUN: mlir-opt %s -test-affine-reify-value-bounds -cse -verify-diagnostics \
+// RUN: -verify-diagnostics -split-input-file | FileCheck %s
----------------
MacDue wrote:
I've updated the `test.reify_scalable_bound` op so the vscale range must be explicitly set (before it defaulted to 1 to 16). So the ops now look like:
```
%bound = "test.reify_scalable_bound"(%vscale_plus_c8) {type = "UB", vscale_min = 1, vscale_max = 16} : (index) -> index
```
https://github.com/llvm/llvm-project/pull/83876
More information about the Mlir-commits
mailing list