@@ -898,9 +898,9 @@ function printcounters(io::IO, groups::Vector{Vector{Counter}})
898
898
for (num, den, label) in [
899
899
(" stalled-cycles-frontend" , " cpu-cycles" , " cycles" ),
900
900
(" 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 " ),
904
904
(" L1-dcache-load-misses" , " L1-dcache-loads" , " dcache loads" ),
905
905
(" L1-icache-load-misses" , " L1-icache-loads" , " icache loads" ),
906
906
(" dTLB-load-misses" , " dTLB-loads" , " dTLB loads" ),
@@ -1017,8 +1017,8 @@ julia> @pstats sort(xs)
1017
1017
│ stalled-cycles-frontend 1.09e+07 49.7% # 4.2% of cycles
1018
1018
└ stalled-cycles-backend 7.07e+06 49.7% # 2.7% of cycles
1019
1019
┌ 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
1022
1022
┌ task-clock 7.61e+07 100.0% # 76.1 ms
1023
1023
│ context-switches 7.00e+00 100.0%
1024
1024
│ cpu-migrations 0.00e+00 100.0%
@@ -1029,8 +1029,8 @@ julia> @pstats "(cpu-cycles,instructions,branch-instructions,branch-misses),page
1029
1029
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
1030
1030
┌ cpu-cycles 2.64e+08 100.0% # 3.5 cycles per ns
1031
1031
│ 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
1034
1034
╶ page-faults 1.95e+03 100.0%
1035
1035
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
1036
1036
```
0 commit comments