Skip to content

Commit f8a7aa6

Browse files
[AMDGPU] enable Hot Block Register Renaming by default for CI/CT run
This flips the default of -amdgpu-enable-hot-block-reg-renaming to true to exercise the pass across large CI/CT builds. This is a temporary enablement to flush out issues; users can still disable with -mllvm -amdgpu-enable-hot-block-reg-renaming=false.
1 parent cbdbf28 commit f8a7aa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ static cl::opt<bool> EnableRegReassign(
416416
static cl::opt<bool> EnableHotBlockRegRenaming(
417417
"amdgpu-enable-hot-block-reg-renaming",
418418
cl::desc("Enable hot block register renaming to reduce value density"),
419-
cl::init(false), cl::Hidden);
419+
cl::init(true), cl::Hidden);
420420

421421
static cl::opt<bool> OptVGPRLiveRange(
422422
"amdgpu-opt-vgpr-liverange",

0 commit comments

Comments
 (0)