현재 CPU 속도가 최소 속도보다 낮습니까?

현재 CPU 속도가 최소 속도보다 낮습니까?

현재 CPU 속도(1253.029MHZ)가 최소 속도(1400MHZ)보다 낮습니까? 새 컴퓨터인데 문제가 있나요?

Architecture:                    x86_64
CPU op-mode(s):                  32-bit, 64-bit
Byte Order:                      Little Endian
Address sizes:                   43 bits physical, 48 bits virtual
CPU(s):                          4
On-line CPU(s) list:             0-3
Thread(s) per core:              1
Core(s) per socket:              4
Socket(s):                       1
NUMA node(s):                    1
Vendor ID:                       AuthenticAMD
CPU family:                      23
Model:                           24
Model name:                      AMD Ryzen 3 3200G with Radeon Vega Graphics
Stepping:                        1
Frequency boost:                 enabled
CPU MHz:                         1253.029
CPU max MHz:                     3600,0000
CPU min MHz:                     1400,0000
BogoMIPS:                        7186.89
Virtualization:                  AMD-V
L1d cache:                       128 KiB
L1i cache:                       256 KiB
L2 cache:                        2 MiB
L3 cache:                        4 MiB
NUMA node0 CPU(s):               0-3
Vulnerability Itlb multihit:     Not affected
Vulnerability L1tf:              Not affected
Vulnerability Mds:               Not affected
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 AMD retpoline, IBPB conditiona
                                 l, STIBP disabled, RSB filling
Vulnerability Srbds:             Not affected
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 mmx fxsr sse s
                                 se2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtsc
                                 p lm constant_tsc rep_good nopl nonstop_tsc cpu
                                 id extd_apicid aperfmperf pni pclmulqdq monitor
                                  ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes 
                                 xsave avx f16c rdrand lahf_lm cmp_legacy svm ex
                                 tapic cr8_legacy abm sse4a misalignsse 3dnowpre
                                 fetch osvw skinit wdt tce topoext perfctr_core 
                                 perfctr_nb bpext perfctr_llc mwaitx cpb hw_psta
                                 te sme ssbd sev ibpb vmmcall fsgsbase bmi1 avx2
                                  smep bmi2 rdseed adx smap clflushopt sha_ni xs
                                 aveopt xsavec xgetbv1 xsaves clzero irperf xsav
                                 eerptr arat npt lbrv svm_lock nrip_save tsc_sca
                                 le vmcb_clean flushbyasid decodeassists pausefi
                                 lter pfthreshold avic v_vmsave_vmload vgif over
                                 flow_recov succor smca

답변1

lscpu의 출력으로는 문제가 있는지 판단할 수 없습니다. 현재 주파수가 최소 주파수보다 훨씬 낮은 것을 본 적이 없지만 CPU가 얼마나 복잡한지를 고려하면 이는 놀라운 일이 아닙니다. 추가 성능을 위해 ACPI 상태를 통해 전원 조정기를 늘리거나, 클럭을 줄이거나 조절하여 각 CPU 코어의 전력 소비와 열을 개별적으로 줄일 수 있습니다. 또한 CPU가 하트비트를 건너뛸 수 있는 STOPCLOCK을 삽입할 수도 있습니다. AMD에는 Cool'n'Quiet과 PowerNow가 있습니다! 이는 전압과 주파수에 영향을 미칩니다. 마더보드도 영향을 미치고 전원 공급 장치도 영향을 미칩니다. 그러나 CPU 코어의 온도에 특별한 주의를 기울이십시오.

Linux는 /sys 인터페이스를 통해 주파수에 대한 자세한 정보를 공개합니다. lscpu는 이를 요약에 사용합니다. 그러나 문제가 의심되는 경우 특히 시스템에 부하가 걸릴 때 커널 매개변수를 직접 살펴보십시오.

/sys-name 찾기빈도

CPU 주파수에 대한 커널 설명은 여기에 문서화되어 있습니다. Linux 커널 CPU 주파수

관련 정보