[PATCH] D100904: [AMDGPU] Lower regbanks reassign threshold to 15000
Stanislav Mekhanoshin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 21 08:34:30 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf9d0d0d7e01f: [AMDGPU] Lower regbanks reassign threshold to 15000 (authored by rampitec).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100904/new/
https://reviews.llvm.org/D100904
Files:
llvm/lib/Target/AMDGPU/GCNRegBankReassign.cpp
Index: llvm/lib/Target/AMDGPU/GCNRegBankReassign.cpp
===================================================================
--- llvm/lib/Target/AMDGPU/GCNRegBankReassign.cpp
+++ llvm/lib/Target/AMDGPU/GCNRegBankReassign.cpp
@@ -52,7 +52,7 @@
// Threshold to keep compile time reasonable.
static cl::opt<unsigned> VRegThresh("amdgpu-regbanks-reassign-threshold",
cl::desc("Max number of vregs to run the regbanks reassign pass"),
- cl::init(100000), cl::Hidden);
+ cl::init(15000), cl::Hidden);
#define DEBUG_TYPE "amdgpu-regbanks-reassign"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D100904.339250.patch
Type: text/x-patch
Size: 549 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210421/492b28bc/attachment-0001.bin>
More information about the llvm-commits
mailing list