Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable GPU Boost

I'm programming a game and I want to be able to disable GPU boost in my GTX 680 card from the source code, i.e. with c++ or assembly. I know this question might be a little odd, but I can't think of any other way to word it.

I'm reading a book on dx11 programming (Frank De Lunas), and I am getting really low frame rates in one of the advanced examples. I monitored my gpu speed and it was running at idle speeds (324 Mhz). The problem is probably how the demo was coded, but it may me think that regardless of that I will like to have the ability of turning GPU boost off.

like image 452
Miguel Avatar asked Jul 25 '26 15:07

Miguel


1 Answers

Your best hope is to use NVAPI for something like this, however, this thread on the nVidia forums makes it pretty clear that its nigh impossible to disable (at least is a safe, nVidia approved manner).

like image 66
Necrolis Avatar answered Jul 28 '26 04:07

Necrolis