[Mlir-commits] [mlir] [mlir][scf] add unroll-full option to test-loop-unrolling pass. (PR #127158)
Oleksandr Alex Zinenko
llvmlistbot at llvm.org
Mon Feb 17 23:17:05 PST 2025
================
@@ -77,6 +82,9 @@ struct TestLoopUnrollingPass
llvm::cl::init(false)};
Option<unsigned> loopDepth{*this, "loop-depth", llvm::cl::desc("Loop depth."),
llvm::cl::init(0)};
+ Option<bool> unrollFull{*this, "unroll-full",
+ llvm::cl::desc("Full unroll loops."),
+ llvm::cl::init(false)};
----------------
ftynse wrote:
It's okay to change it from `uint64_t` to `int64_t`, but I won't insist. This is a test pass.
https://github.com/llvm/llvm-project/pull/127158
More information about the Mlir-commits
mailing list