Skip to content

Instantly share code, notes, and snippets.

@publicarray
Last active February 26, 2023 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save publicarray/98e402cf73d60640581ef399b4b82079 to your computer and use it in GitHub Desktop.
Save publicarray/98e402cf73d60640581ef399b4b82079 to your computer and use it in GitHub Desktop.
BD PROCHOT throttling the CPU

Windows

ThrottleStop

https://www.techpowerup.com/download/techpowerup-throttlestop/

https://www.ultrabookreview.com/31385-the-throttlestop-guide/

Linux

https://github.com/yyearth/turnoff-BD-PROCHOT

https://askubuntu.com/questions/1148941/disable-bd-prochot-permanently-or-quickly-lubuntu-18-04-2

lscpu 
turbostat
watch -n1 "grep \"^[c]pu MHz\" /proc/cpuinfo"
i7z
cpupower frequency-info

sudo apt-get install msrtool
sudo pacman -S msr-tools turbostat i7z
yay -S cpu-x
 
sudo modprobe msr 
sudo wrmsr 0x1FC 17422

sudo nano /etc/systemd/system/bd-prochot.service
sudo systemctl enable bd-prochot
sudo systemctl start bd-prochot
[Unit]
Description=Disable BD-PROCHOT throttling the CPU
[Service]
ExecStart=wrmsr 0x1FC 17422
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment