インテルCore i7-4600Uプロセッサがサポートしているターボ・ブースト・テクノロジーを。基本周波数は2.10GHz、最大ターボ周波数は3.30GHzです。つまり、
- (BIOSセットアップメニューで)Turbo Boostを無効にすると、CPUは常に2.10GHzで動作します。
- Turbo Boostが有効で、コアの1つだけが機能している場合、CPUは最大3.30GHzで機能します。
- Turbo Boostが有効で、すべてのコアが動作している場合、CPUは2.10GHzで動作します。
現在の周波数を取得する
Turbo Boostがアクティブになっているかどうか、および現在の周波数を確認するには、を使用できますcpupower frequency-info
。たとえば、Turbo Boostを有効にした古いIntel Core i5-660の場合、次のものが得られます。
$ cpupower frequency-info
analyzing CPU 0:
driver: acpi-cpufreq
CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: 10.0 us.
hardware limits: 1.20 GHz - 3.47 GHz
available frequency steps: 3.47 GHz, 3.33 GHz, 2.53 GHz, 1.87 GHz, 1.20 GHz
available cpufreq governors: conservative, ondemand, userspace, powersave, performance
current policy: frequency should be within 1.20 GHz and 3.47 GHz.
The governor "ondemand" may decide which speed to use
within this range.
current CPU frequency is 1.87 GHz.
cpufreq stats: 3.47 GHz:82,67%, 3.33 GHz:0,00%, 2.53 GHz:0,00%, 1.87 GHz:0,06%, 1.20 GHz:17,28% (3)
boost state support:
Supported: yes
Active: yes
25500 MHz max turbo 4 active cores
25500 MHz max turbo 3 active cores
25500 MHz max turbo 2 active cores
25500 MHz max turbo 1 active cores
情報には、ハードウェアの制限(1.20 GHz - 3.47 GHz
)、可能な周波数(3.47 GHz, 3.33 GHz, 2.53 GHz, 1.87 GHz, 1.20 GHz
)、現在の周波数(1.87 GHz
)が記載されていることに注意してください。これらの周波数の技術情報は、IntelのWebサイトで見つけることができます。
TurboBoostが無効になっているときの頻度
あなたはターボと同じコマンドを実行したときの違いに注意してください無効になっブースト:でboost state support
、セクションの値Supported
とActive
していますno
。この場合、CPUは常に公称/最小値(1.20Ghz)になります。
$ cpupower frequency-info
analyzing CPU 0:
driver: acpi-cpufreq
CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: 10.0 us.
hardware limits: 1.20 GHz - 3.47 GHz
available frequency steps: 3.47 GHz, 3.33 GHz, 2.53 GHz, 1.87 GHz, 1.20 GHz
available cpufreq governors: conservative, ondemand, userspace, powersave, performance
current policy: frequency should be within 1.20 GHz and 3.47 GHz.
The governor "ondemand" may decide which speed to use
within this range.
current CPU frequency is 1.20 GHz.
cpufreq stats: 3.47 GHz:40,86%, 3.33 GHz:0,01%, 2.53 GHz:0,06%, 1.87 GHz:0,22%, 1.20 GHz:58,85% (493)
boost state support:
Supported: no
Active: no
25500 MHz max turbo 4 active cores
25500 MHz max turbo 3 active cores
25500 MHz max turbo 2 active cores
25500 MHz max turbo 1 active cores
BIOSまたは一部のLinuxオプション/コマンドを使用して、ターボブーストを無効にできます。カーネルのサポートを有効にすることができます/無効に使用して/sys/devices/system/cpu/cpufreq/boost
ファイルを。
/proc/cpuinfo
また、言う行が必要cpu MHZ: ...
現在の速度であるが。後の2.1@
は基本速度です(ターボブーストなし)。