ubuntu 21.04 中的电源模式发生了什么?平衡模式非常滞后

ubuntu 21.04 中的电源模式发生了什么?平衡模式非常滞后

编辑:实际问题:

您或其他任何人在全新安装的 ubuntu 21.04 上使用此电源模式时是否遇到过性能下降的问题。我正在试图弄清楚为什么会发生这种情况。以及为什么我需要安装一堆额外的工具来防止我的系统在全新安装后滞后。

我其实很困惑这个工具是如何工作的?我的机器一直有速度问题。我试图玩一些 retroarch nes 模拟游戏,但非常卡。这毫无道理,因为这是一台相当新的机器,而 nes 模拟游戏已经存在了几十年(我可以在我的旧 333mhz psp 上模拟这个……)所以我的电脑肯定能够处理它。

我尝试将电源模式改为性能模式。效果好多了,但奇怪的是 CPU 频率调节器不会提高时钟速度。我注意到很多东西都很慢,包括 YouTube。我实际上想知道为什么平衡模式感觉不那么平衡。然后我做了以下事情:检查调节器:

sudo apt-get install cpufrequtils

检查调节器 cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor powersave powersave powersave powersave powersave powersave powersave powersave

我将调节器设置为性能,现在它看起来运行得更好了:

sudo nano /etc/default/cpufrequtils

并设置:

GOVERNOR="performance"

然后重启服务

sudo systemctl restart cpufrequtils

我实际上安装了cpufreq监视器:https://extensions.gnome.org/extension/1082/cpufreq/它允许我将调速器设置为性能,将电源配置设置为平衡。现在,即使将调速器设置为省电,一切似乎都运行顺畅无比。另外要注意的是,我运行了:

sudo sysctl dev.i915.perf_stream_paranoid=0

由于 retroach 抱怨性能并考虑上述代码。

为什么这种平衡的功率配置会真正降低性能。我不确定如何保留该设置。我是否应该忘记它并继续使用 cpufreq?有共识吗?

这是我的 CPU 信息:

lscpu
Architecture:                    x86_64
CPU op-mode(s):                  32-bit, 64-bit
Byte Order:                      Little Endian
Address sizes:                   39 bits physical, 48 bits virtual
CPU(s):                          8
On-line CPU(s) list:             0-7
Thread(s) per core:              2
Core(s) per socket:              4
Socket(s):                       1
NUMA node(s):                    1
Vendor ID:                       GenuineIntel
CPU family:                      6
Model:                           142
Model name:                      Intel(R) Core(TM) i7-8565U CPU @ 1.80GHz
Stepping:                        11
CPU MHz:                         2000.000
CPU max MHz:                     4600.0000
CPU min MHz:                     400.0000
BogoMIPS:                        3999.93
Virtualization:                  VT-x
L1d cache:                       128 KiB
L1i cache:                       128 KiB
L2 cache:                        1 MiB
L3 cache:                        8 MiB
NUMA node0 CPU(s):               0-7
Vulnerability Itlb multihit:     KVM: Mitigation: VMX disabled
Vulnerability L1tf:              Not affected
Vulnerability Mds:               Mitigation; Clear CPU buffers; SMT vulnerable
Vulnerability Meltdown:          Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled v
                                 ia prctl and seccomp
Vulnerability Spectre v1:        Mitigation; usercopy/swapgs barriers and __user
                                  pointer sanitization
Vulnerability Spectre v2:        Mitigation; Full generic retpoline, IBPB condit
                                 ional, IBRS_FW, STIBP conditional, RSB filling
Vulnerability Srbds:             Mitigation; Microcode
Vulnerability Tsx async abort:   Not affected
Flags:                           fpu vme de pse tsc msr pae mce cx8 apic sep mtr
                                 r pge mca cmov pat pse36 clflush dts acpi mmx f
                                 xsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rd
                                 tscp lm constant_tsc art arch_perfmon pebs bts 
                                 rep_good nopl xtopology nonstop_tsc cpuid aperf
                                 mperf pni pclmulqdq dtes64 monitor ds_cpl vmx e
                                 st 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 3dnowpre
                                 fetch cpuid_fault epb invpcid_single ssbd ibrs 
                                 ibpb stibp tpr_shadow vnmi flexpriority ept vpi
                                 d ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi
                                 2 erms invpcid mpx rdseed adx smap clflushopt i
                                 ntel_pt xsaveopt xsavec xgetbv1 xsaves dtherm i
                                 da arat pln pts hwp hwp_notify hwp_act_window h
                                 wp_epp md_clear flush_l1d arch_capabilities

相关内容