If you face FPS drops and stuttering, you can try changing the HPET settings to increase the performance of your PC and get smoother gameplay.
HPET stands for High Precision Event Timer (formerly Multimedia Timer) and has been used in PCs for a long time. It is used to produce periodic interrupts, which can be used to synchronize multimedia streams, in turn, providing smoother playback. It also reduces the need for other timestamp calculations. Performance of PC can also be increase by enabling Win32 Priority Separation which you can read here.
You can use the device manager to disable the High Precision Event Timer. I’ll show you how to use device manager settings to disable HPET.
Just to add, you can test this change via "TimerBench". As well as toggle between HPET and iTSC timers.
Actually disabling it through device manager doesn't change anything. It is registry edit that must be done for it to work. Personally do it through TimerBench itself.
Basically every test run have variability (for me 99% frametime can be from 3.14 to 3.24 no matter iTSC or HPET), but amount of calls per second is more important. iTSC is just having higher timer resolution.
To disable HPET manually you can use command line with administrative rights and write
bcdedit /set useplatformclock true
To enable HPET again just delete this value
bcdedit /deletevalue useplatformclock
Result of changing HPET status on my 5600X via TimerBench. On other side "Toggling High Precision even timer" as device didn't change anything
I should have included the other way to change tis setting...as using the device manager works for me.
You can also use the cmd to stop the HPET and reduce gameplay stuttering. Follow the steps to disable HPET using cmd
bcdedit /deletevalue useplatformclock
bcdedit /set disabledynamictick yes
To restore the HPET settings back to on, follow these steps
bcdedit /set useplatformclock true
bcdedit /set disabledynamictick no
Conclusion
If you are unsure about the HPET affecting your gameplay, I suggest you run benchmarks on your own system instead of believing others. There is a variety of tools available online that can help you with that, e.g. TimerBench. Use these timer benchmarks to measure if turning off the High Precision Event Timer can affect the timer performance.
So there you have it. Now you know how to disable HPET and improve the system gaming performance. Did you find the methods useful? Comment down below if you found the HPET affecting timer performance.