perf stat -d ./sample.out
出力は次のとおりです
Performance counter stats for './sample.out':
0.586266 task-clock (msec) # 0.007 CPUs utilized
2 context-switches # 0.003 M/sec
1 cpu-migrations # 0.002 M/sec
116 page-faults # 0.198 M/sec
7,35,790 cycles # 1.255 GHz [81.06%]
<not counted> stalled-cycles-frontend
<not supported> stalled-cycles-backend
<not counted> instructions
<not counted> branches
<not counted> branch-misses
<not supported> L1-dcache-loads:HG
<not counted> L1-dcache-load-misses:HG
<not counted> LLC-loads:HG
<not supported> LLC-load-misses:HG
0.088013919 seconds time elapsed
<not supported>
なぜそのようなことが起こるのかを読んだ。<not supported>
。しかし、<not counted>
指示、分岐などの基本カウンターもあります。誰でも動作させる方法を提案できますか?
楽しく:
sudo パフォーマンス統計 睡眠 3
出力は次のとおりです。
Performance counter stats for 'sleep 3':
0.598484 task-clock (msec) # 0.000 CPUs utilized
2 context-switches # 0.003 M/sec
0 cpu-migrations # 0.000 K/sec
181 page-faults # 0.302 M/sec
<not counted> cycles
<not counted> stalled-cycles-frontend
<not supported> stalled-cycles-backend
<not counted> instructions
<not counted> branches
<not counted> branch-misses
sudo perf stat -C 1 睡眠 3
Performance counter stats for 'CPU(s) 1':
3002.640578 task-clock (msec) # 1.001 CPUs utilized [100.00%]
425 context-switches # 0.142 K/sec [100.00%]
9 cpu-migrations # 0.003 K/sec [100.00%]
5 page-faults # 0.002 K/sec
7,82,97,019 cycles # 0.026 GHz [33.32%]
9,38,21,585 stalled-cycles-frontend # 119.83% frontend cycles idle [33.32%]
<not supported> stalled-cycles-backend
3,09,81,643 instructions # 0.40 insns per cycle
# 3.03 stalled cycles per insn [33.32%]
70,15,390 branches # 2.336 M/sec [33.32%]
6,38,644 branch-misses # 9.10% of all branches [33.32%]
3.001075650 seconds time elapsed
これが予期せぬ効果を発揮するのはなぜですか? ?
ベストアンサー1
あなたのプロセッサはサポートしていませんカウンターが多すぎるそして頻繁に切り替える私はそれらの間で推測する。
カウンタが多重化される最後の例の最後の列(合計時間の33%以上が計算されます。)。使用する場合十分に小さい仕事(またはより多くのコア?)他のコアは常に使用されるため、計算されません。最初の例では、cycles
時間計算のみを管理します。