为什么我的所有 CPU 都扩展到最大频率,而其中只有一个 CPU 以 100% 运行,而其他所有 CPU 都以 0% 左右运行?

为什么我的所有 CPU 都扩展到最大频率,而其中只有一个 CPU 以 100% 运行,而其他所有 CPU 都以 0% 左右运行?

我在配备 i7 第 8 代 6 核的 System76 Oryx Pro 4 上运行 Ubuntu 18。

lscpu以下是供您参考的输出:

Architecture:        x86_64
CPU op-mode(s):      32-bit, 64-bit
Byte Order:          Little Endian
CPU(s):              12
On-line CPU(s) list: 0-11
Thread(s) per core:  2
Core(s) per socket:  6
Socket(s):           1
NUMA node(s):        1
Vendor ID:           GenuineIntel
CPU family:          6
Model:               158
Model name:          Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz
Stepping:            10
CPU MHz:             1268.451
CPU max MHz:         4100.0000
CPU min MHz:         800.0000
BogoMIPS:            4416.00
Virtualisation:      VT-x
L1d cache:           32K
L1i cache:           32K
L2 cache:            256K
L3 cache:            9216K
NUMA node0 CPU(s):   0-11
Flags:               fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp flush_l1d

从下图可以看出,当所有CPU的使用率<=6%时,所有CPU都以800MHz的频率运行。 在此处输入图片描述

但是,当我在终端运行以下命令时,会导致 CPU5 的使用率上升到 100%,所有 CPU(即使是使用率为 0% 的 CPU)都会缩放到 4,100 MHz,这是最大 CPU 频率。

while :; do :; done

在此处输入图片描述

这是预期的行为吗?

另外,有什么方法可以改变行为,以便只有使用率为 100% 的 CPU 频率才会增加到最高速度?

相关内容