[llvm] [AMDGPU] Extend promotion of alloca to vectors (PR #127973)

Shilei Tian via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 20 06:01:35 PST 2025


================
@@ -66,6 +66,18 @@ static cl::opt<unsigned> PromoteAllocaToVectorLimit(
     cl::desc("Maximum byte size to consider promote alloca to vector"),
     cl::init(0));
 
+static cl::opt<unsigned> PromoteAllocaToVectorMaxElements(
+    "amdgpu-promote-alloca-to-vector-max-elements",
+    cl::desc("Maximum vector size (in elements) to use when promoting alloca"),
+    cl::init(16));
----------------
shiltian wrote:

Do we expect end users to use these options?

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


More information about the llvm-commits mailing list