← All Tweaks
GPU
AMD - Performance Optimizations
Configure AMD GPU for optimal gaming performance
Benefit
Improved GPU performance and reduced power state transitions
Impact
highCommands (7)
$path = "HKLM:\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000"if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }New-ItemProperty -Path $path -Name "EnableUlps" -PropertyType DWord -Value 0 -Force
$path = "HKLM:\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000\UMD"if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }New-ItemProperty -Path $path -Name "Main3D_DEF" -PropertyType String -Value "1" -Force
New-ItemProperty -Path $path -Name "Main3D" -PropertyType String -Value "1" -Force