@@ -898,9 +898,9 @@ function printcounters(io::IO, groups::Vector{Vector{Counter}})
898898 for (num, den, label) in [
899899 (" stalled-cycles-frontend" , " cpu-cycles" , " cycles" ),
900900 (" stalled-cycles-backend" , " cpu-cycles" , " cycles" ),
901- (" branch-instructions" , " instructions" , " instructions " ),
902- (" branch-misses" , " branch-instructions" , " branch instructions " ),
903- (" cache-misses" , " cache-references" , " cache references " ),
901+ (" branch-instructions" , " instructions" , " insns " ),
902+ (" branch-misses" , " branch-instructions" , " branch insns " ),
903+ (" cache-misses" , " cache-references" , " cache refs " ),
904904 (" L1-dcache-load-misses" , " L1-dcache-loads" , " dcache loads" ),
905905 (" L1-icache-load-misses" , " L1-icache-loads" , " icache loads" ),
906906 (" dTLB-load-misses" , " dTLB-loads" , " dTLB loads" ),
@@ -1017,8 +1017,8 @@ julia> @pstats sort(xs)
10171017│ stalled-cycles-frontend 1.09e+07 49.7% # 4.2% of cycles
10181018└ stalled-cycles-backend 7.07e+06 49.7% # 2.7% of cycles
10191019┌ instructions 1.96e+08 50.3% # 0.8 insns per cycle
1020- │ branch-instructions 4.02e+07 50.3% # 20.5% of instructions
1021- └ branch-misses 8.15e+06 50.3% # 20.3% of branch instructions
1020+ │ branch-instructions 4.02e+07 50.3% # 20.5% of insns
1021+ └ branch-misses 8.15e+06 50.3% # 20.3% of branch insns
10221022┌ task-clock 7.61e+07 100.0% # 76.1 ms
10231023│ context-switches 7.00e+00 100.0%
10241024│ cpu-migrations 0.00e+00 100.0%
@@ -1029,8 +1029,8 @@ julia> @pstats "(cpu-cycles,instructions,branch-instructions,branch-misses),page
10291029━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
10301030┌ cpu-cycles 2.64e+08 100.0% # 3.5 cycles per ns
10311031│ instructions 1.86e+08 100.0% # 0.7 insns per cycle
1032- │ branch-instructions 3.74e+07 100.0% # 20.1% of instructions
1033- └ branch-misses 8.21e+06 100.0% # 21.9% of branch instructions
1032+ │ branch-instructions 3.74e+07 100.0% # 20.1% of insns
1033+ └ branch-misses 8.21e+06 100.0% # 21.9% of branch insns
10341034╶ page-faults 1.95e+03 100.0%
10351035━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
10361036```
0 commit comments