3

I'm using HP DL360p Gen8 with 2 * Xeon E5-2640. I do not load CPU 100%, i load it only ~10% and so I guess turboboost is not activated. However I'm using my server for trading so I absolutely don't care about CPU loading but I always want to process my data asap. So I want server to operate using maximum 3 GHz.

I.e. 90% of CPU time I don't have anything to process. 10% of CPU time I have data to process. But I need to process it ASAP. I need every single microsecond. So I want server to operate always at maximum "turboboosted" mode. Is it possible?

Hennes
  • 65,804
  • 7
  • 115
  • 169

2 Answers2

3

TurboBoost dynamically overclocks the processor based on how many cores are fully loaded. If you are actually loading all the cores on the CPU, you are not seeing 3GHz most likely, even with TurboBoost.

What you would want to actually get a consistent boost is to disable TurboBoost and then overclock the processor up to the speed that you want. Obviously this introduces risk into the system since components are operating over rated capacity, so weigh those against the potential cost of replacing hardware if it is not kept properly cool (google around, see what other people are able to make the processor do, use that to gauge how well it overclocks. If people are consistantly pushing it to 4GHz under full load, then there's a good chance you can hit 3GHz. If a few are struggling to hit 3.2GHz, then be more weary). You might have to replace the cooling fan on the CPU to keep temperatures in check.

Darth Android
  • 38,658
0

Such hardware does not support overclocking, but you can go into the BIOS and set power management to "High performance". If you're running Windows, set the power policy in the OS to "High performance" too. Under Linux, set the CPU scaling governor to "performance". This won't keep the CPU in turbo boost territory but will keep its minimum at base clock, so there will be less upshifting when the load increases. You may also choose to disable all P-states in the BIOS, this will further reduce CPU response latency, but this will cause a huge increase in idle power draw.

RedShift
  • 206