ffmpeg 不使用最大 CPU 功率

ffmpeg 不使用最大 CPU 功率

我買了兩個新的CPU E5-2650:

8c * 16t per core = 128 * 2 = 256 - max number of threads

但看起來 ffmpeg 沒有使用 cpu 的最大功率,即使我正在運行它-threads 0。從atop我可以看到 ffmpeg 僅使用 72 個線程。

  PID     RUID         EUID          THR      SYSCPU      USRCPU      VGROW      RGROW      RDDSK      WRDSK     ST     EXC     S     CPUNR      CPU     CMD         1/9
40919     root         root           72       1.37s      20.09s         0K         0K      2688K       768K     --       -     S         7     1084%     ffmpeg

CPU資訊:

vendor_id   : GenuineIntel
cpu family  : 6
model       : 45
model name  : Intel(R) Xeon(R) CPU E5-2650 0 @ 2.00GHz
stepping    : 7
microcode   : 0x70a
cpu MHz     : 2001.000
cache size  : 20480 KB
physical id : 1
siblings    : 16
core id     : 7
cpu cores   : 8
apicid      : 47
initial apicid  : 47
fpu     : yes
fpu_exception   : yes
cpuid level : 13
wp      : yes
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips    : 3990.40
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

答案1

E5-2650有 8 個核心,每個程式碼可以處理 2 個線程。也就是16個線程每個CPU。每個核心不是 16 個。

兩個CPU總共有32個執行緒。假設電腦的其餘部分速度足夠快,可以繼續為 CPU 提供數據,那麼最佳使用量將接近 32 個執行緒。在實踐中,情況並非如此,總是存在一些其他延遲,無論是從記憶體讀取、讀取或寫入磁碟或從其他地方讀取或寫入時。所以最佳的使用量並不總是與最大可用線程數相同。

在你的例子中,可能使用了 72 個線程,因為有些線程啟動了,然後必須等待其他資料。同時,其他線程可以繼續。因此實際上有更多的活動線程可以同時進行計算。

相關內容