I recently purchased a laptop with a sandy bridge CPU that is supposed to have turbo boost. Is turbo boost supported in 11.04? How can I tell if it's working?
I recently purchased a laptop with a sandy bridge CPU that is supposed to have turbo boost. Is turbo boost supported in 11.04? How can I tell if it's working?
11.04 runs the 2.6.38 kernel which is supposed to work well with Sandy Bridge CPUs.
You can open a terminal and run
grep MHz /proc/cpuinfo
. Then open a second terminal tab and run a loop likewhile :; do :; done
. In the first terminal, rungrep MHz /proc/cpuinfo
again. You should see one of the cores has a higher frequency now:You can also try powertop and
turbostat
from the linux-tools-common package (runsudo modprobe msr
beforesudo turbostat
). The Git version of i7z is supposed to work for Sandy Bridge (and it works for me with a desktop i7).Use
sudo turbostat
for this. The output ofcat /proc/cpuinfo
does not always show the real current CPU frequency but instead the maximum non-turbo frequency even when Turbo Boost is enabled and active.As stated in elmicha's answer, you'll need to load the msr module with
sudo modprobe msr
and then run turbostat withsudo turbostat
.Accepted top voted answer doesn't always work
As the second top voted answer pointed out, the top voted and accepted answer sometimes shows the maximum regular frequency.
Alternate CLI methods
Below you can see frequencies for CPU Number 0. To see all CPU's replace
0
with*
. The frequency is expressed in MHz with three decimal places. So1000000
= 1000 MHz = 1 GHz. This Intel Skylake processor is rated to 2.6 GHz or 3.5 GHz with Turbo Boost enabled.Minimum frequency 800 MHz
Maximum frequency 3500 MHz (3.5 GHz)
Current frequency 1027.669 MHz (1.028 GHz)
CPU 0 to 7 Frequency when YouTube loads up
4 out of 8 processors are in turbo mode (above 2.6 GHz)
CPU 0 to 7 Frequency when YouTube paused
All processors are at minimum speed of 800 MHz even though Chrome is running on two screens with 11 tabs open but YouTube paused.
Is Intel Turbo Boost enabled?
Using the terminal you can check if Turbo Boost feature is enabled:
This is a double negative; when "no turbo" is off (=0) then Turbo Boost is on.
To disable Turbo Boost use
sudo
powers and set the switchno_turbo
to1
:The returned
1
indicates turbo is now off.Alternate GUI method using Conky
Other answers mention alternate methods to the basic CLI (Command Line Interface). I like to use Conky to do this. In the example below the Skylake CPU has a regular frequency from 800 MHz to 2600 Mhz. With turbo boost enabled the frequency can jump to 3500 MHz under heavy load.
The .gif sample below starts out by showing frequency fluctuating around 3100 MHz under heavy load when
grep
is running on the whole file system. Then the command is issued:...to shut off turbo boost. Speed drops to fixed speed of 2600 MHz which is the regular maximum speed without turbo.
Then the turbo command is reversed:
...to turn turbo back on and speed jumps above 2600 MHz and fluctuates around 3100 to 3200 MHz again.
Notice how quickly temperature jumps 10 degrees when Turbo is turned on
To install turbostat you need to run:
(apparently I lack reputation to add this as a comment to @david-gardner post)
For me everything was set properly so none of the answers were applicable. After wasting a couple of days I found out that my CPU governor was set to
powersave
and would never go above the base frequency. Had to switch it toperformance
Here is how to fix it
You will need to install
cpupower
firstcpupower
is a collection of tools to examine and tune power saving related features of your processor.cpupower frequency-info
can help to get the required info.Sample output:
boost state - active confirms what you looking for.
Man page: https://linux.die.net/man/1/cpupower
PS: I know its an old thread but thought this answer is appropriate here and can help someone.
You can see the working of turbo boost in ubuntu in real-time using
htop
.Install
htop
:Open it by running
htop
in the terminal. You will see a graphical window in the terminal.Click
Setup
with the mouse or press F2.Click on the
Display options
and enableAlso show CPU frequency
:Click
Done
or press F10 to save the settings.Now you can see the turbo boost is working by looking at the real-time CPU frequency. In the following screenshot, for example, the base speed of my i5 processor is 2.5GHz, but you can see the turbo boost is kicking in and giving more than 3GHz.
In addition,
htop
can display how much percentage of the core is used along with the temperature as well andhtop
displays the statistics more graphically in the terminal window itself. The advantage of usinghtop
over other tools mentioned in this question, we can see which process is taking more resources in terms of CPU used and memory used. Users can kill the process if they want to.