我有一台服务器,在升级到 10.04 时,它现在正在运行“按需”CPU 扩展守护程序。为什么会自动安装这个?我不希望我的服务器以牺牲性能为代价来节省电量。
我有一台 HP Pavilion dv6-2190us 笔记本,它有 8GB DDR3 和一个 1.60GHz 的 i7 处理器(Turbo Boost 高达 2.80GHz)
我不确定我是否做错了什么或遗漏了一步还是什么,但我一生都无法弄清楚如何让涡轮增压工作。
这是一个真正的痛苦,因为 8x 1.6GHz 真的很糟糕,我开始希望我有一个内核更少但每个内核时钟速度更快的 i5...
有什么我可以做的,要么启用速度步进/涡轮增压,要么一直保持超频?
哦,我正在运行 Ubuntu 10.10 64 位。
谢谢!
编辑我遵循了此处的采购,但是当我执行循环时,我的结果根本没有改变。
cpu MHz : 1600.000
cpu MHz : 1600.000
cpu MHz : 1600.000
cpu MHz : 1600.000
cpu MHz : 1600.000
cpu MHz : 1600.000
cpu MHz : 1600.000
cpu MHz : 1600.000
Run Code Online (Sandbox Code Playgroud) 我在台式机上运行 Ubuntu 15.04,配备 6 核 5930K 处理器、msi x99s 主板、32gb 内存、ssd 和 nvidia gtx 980ti。令人惊讶的是,整体系统性能远低于预期,比我的笔记本电脑慢得多。至少乍一看,因为计算机是新的,我没有机会在上面运行大量计算。似乎问题的根源在于新的 intel_pstate 驱动程序保持较低的 CPU 频率。
实际上, cpufreq-info 的输出是
analyzing CPU 0:
driver: intel_pstate
CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: 0.97 ms.
hardware limits: 1.20 GHz - 3.70 GHz
available cpufreq governors: performance, powersave
current policy: frequency should be within 3.70 GHz and 3.70 GHz.
The governor "performance" may decide which …Run Code Online (Sandbox Code Playgroud) 我试图理解为什么我的 CPU 不能以更高的频率运行(相关链接)
有人能解释一下,当定义了最小值和最大值时,有效值最终会超出该范围吗?
$ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
3267000
$ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
3300000
$ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
1199960
$ cpupower frequency-info
analyzing CPU 0:
driver: intel_pstate
CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: 0.97 ms.
hardware limits: 800 MHz - 3.30 GHz
available cpufreq governors: performance, powersave
current policy: frequency should be within 3.27 GHz and 3.30 GHz.
The governor "performance" may decide which …Run Code Online (Sandbox Code Playgroud)