我试图在一台带有sextractor处理器的双引导Windows8.1/Ubuntu14.04机器上安装i5。
我遵循关于如何将ATLAS安装到Ubuntu的这指南。
我总是遇到这样的错误:
../configure
make: `xconfig' is up to date.
./xconfig -d s /home/user/Programs/atlas/bld/../ -d b /home/user/Programs/atlas/bld
OS configured as Linux (1)
Assembly configured as GAS_x8664 (2)
Vector ISA Extension configured as AVXMAC (3,488)
Architecture configured as Corei3 (28)
Clock rate configured as 3100Mhz
Maximum number of threads configured as 4
Parallel make command configured as '$(MAKE) -j 4'
CPU Throttling apparently enabled!
It appears you have cpu throttling enabled, which makes timings
unreliable and an ATLAS install nonsensical. Aborting.
See ATLAS/INSTALL.txt for further information
xconfig exited with 1每次运行时,报告的时钟速率都会发生变化!
我不知道该怎么办..。
发布于 2015-07-01 11:47:58
这就是我发布的这里。
我是一个最近的Ubuntu用户,而不是一个计算机专家,我有着和你完全一样的问题。经过一些挣扎后,我设法避免了"CPU节流显然已启用!“安装了ATLAS 3.10.2。
我得到的第一个提示是这里,它基本上说:“ATLAS应该检测到没有发生的节流现象的唯一时间是当处理器固定以低于其最大速度运行的时候。”我的处理器没有以它的最高速度运行,因为我有BIOS的速度限制。
如果您有同样的问题,请查看文件/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies中允许的最大频率。将此值复制到每个处理器的文件/sys/devices/system/cpu/cpu[0-3]/cpufreq/scaling_max_freq中。您需要以超级用户的身份执行此操作,但在您必须将文件/sys/module/processor/parameters/ignore_ppc从0编辑到1之前,将给出更多的详细信息,给出这里。
这对我来说仍然是不够的,我发现我必须将文件/sys/devices/system/cpu/cpu[0-3]/cpufreq/scaling_min_freq编辑成与以前使用的值相同的值。在那之后,我再也没有收到令人厌烦的信息,ATLAS已经成功安装。
我希望这能帮上忙!
https://askubuntu.com/questions/580960
复制相似问题