Why is the Intel Turbo Boost Mode not running at maximum speed?

14,032

Solution 1

Actually as you are running all 4 cores, the maximum frequency won't be achieved as specified. Intel specifies maximum turbo frequency for a single running core.

There are different maximum frequencies achieved for 1 active core and for 4 active cores (to prevent going over TDP) http://www.cpu-world.com/CPUs/Core_i5/Intel-Core%20i5-3210M%20(BGA)%20Mobile%20processor.html

e.g. thus you are getting around 2.9 ghz rather than 3.1

if you look in i7z there is a line specifying //// max multiplier achieved with 1/2/3/4 core. You cannot go above those multipliers if more than some number of cores are active.

also, inactive core need to be in C3 or higher states to allow the active core(s) to get into higher turbo levels.

Solution 2

Your BIOS sets these values so you will have to check with your motherboard vendor. In my case, I can configure it to whatever I want since I have a motherboard meant for overclocking and an unlocked CPU.

Share:
14,032
Wesley Baugh
Author by

Wesley Baugh

I'm an avid Ubuntu user willing to learn new things about Ubuntu/Linux and to help with what I've learned.

Updated on September 18, 2022

Comments

  • Wesley Baugh
    Wesley Baugh over 1 year

    I tested CPU frequencies with either the Intel tool i7z and turbostat from the linux-tools package (sudo modprobe msr, sudo turbostat) and what I find as maximum frequencies for two different processors is lower as what Intel states as maximum turbo frequency.

    I tested with MrBayes MPI on 4 cores with governors ondemand and performance and the 'turbo' option using indicator-cpufreq.

    1. i5-3210M - Intel specifications max. freq.: 2,5GHz - 3,1GHz Turbo

      max. measured: 2,89GHz

    2. i5-3470 - Intel specifications: 3,2GHz - 3,6GHz Turbo

      max. measured:3,39GHz

    I also tried for i in {1..4}; do burnK7 & done in tty1 and turbostat in tty2 and got the same results.

    Why are the max. Turbo CPU frequency I can measure running Ubuntu lower than the ones Intel states? Where are the "missing" 0,21GHz?

    • Oli
      Oli almost 11 years
      Are you in a situation where turbo is needed? Something like burnK7. It's old but should stress out a single core and cause it to enter turbo.
    • Wesley Baugh
      Wesley Baugh almost 11 years
      This is not a question doubting Turbo Boost in general but asking why Turbo Boost is not running at maximum possible speed.
    • Wesley Baugh
      Wesley Baugh almost 11 years
      Added test information to the question.
    • Leo
      Leo almost 11 years
      You can try to start the tty1, do a sudo service lightdm stop to stop graphical processes that would be running in the CPU and run this while :; do :; done while in tty2 you execute the sudo turbostat or i7z monitors.
    • Wesley Baugh
      Wesley Baugh almost 11 years
      Added more information.
  • Wesley Baugh
    Wesley Baugh almost 11 years
    I only have a switch for enable/disable Turbo Boost in the BIOS. And it's enabled, of course.
  • Wesley Baugh
    Wesley Baugh almost 11 years
    Didn't knwo that there was a difference in max. Turbo core frequencies when more than one is used. Thanks for the information.