Advertisement
Guest User

Untitled

a guest
Sep 20th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.88 KB | None | 0 0
  1. ➜  sudo perf stat -r 10 -d ./cache2
  2.  
  3.  Performance counter stats for './cache2' (10 runs):
  4.  
  5.         277.245502      task-clock (msec)         #    0.999 CPUs utilized            ( +-  0.43% )
  6.                  2      context-switches          #    0.008 K/sec                    ( +- 74.26% )
  7.                  0      cpu-migrations            #    0.000 K/sec                  
  8.             48,872      page-faults               #    0.176 M/sec                    ( +-  0.00% )
  9.      1,064,426,393      cycles                    #    3.839 GHz                      ( +-  1.01% )  (49.00%)
  10.        646,882,247      instructions              #    0.61  insn per cycle           ( +-  0.92% )  (61.91%)
  11.         41,950,485      branches                  #  151.312 M/sec                    ( +-  1.22% )  (62.42%)
  12.             86,894      branch-misses             #    0.21% of all branches          ( +-  2.74% )  (63.68%)
  13.        203,643,185      L1-dcache-loads           #  734.523 M/sec                    ( +-  0.52% )  (60.98%)
  14.         43,216,444      L1-dcache-load-misses     #   21.22% of all L1-dcache hits    ( +-  0.23% )  (25.31%)
  15.         32,213,531      LLC-loads                 #  116.191 M/sec                    ( +-  0.43% )  (24.28%)
  16.          1,593,178      LLC-load-misses           #    4.95% of all LL-cache hits     ( +-  3.33% )  (36.53%)
  17.  
  18.        0.277515107 seconds time elapsed                                          ( +-  0.44% )
  19.  
  20. ➜  sudo perf stat -r 10 -d ./cache1
  21.  
  22.  Performance counter stats for './cache1' (10 runs):
  23.  
  24.          98.945293      task-clock (msec)         #    0.998 CPUs utilized            ( +-  0.30% )
  25.                  0      context-switches          #    0.005 K/sec                    ( +-100.00% )
  26.                  0      cpu-migrations            #    0.000 K/sec                  
  27.             48,872      page-faults               #    0.494 M/sec                    ( +-  0.00% )
  28.        383,080,791      cycles                    #    3.872 GHz                      ( +-  0.20% )  (51.21%)
  29.        652,866,309      instructions              #    1.70  insn per cycle           ( +-  0.23% )  (63.64%)
  30.         42,986,792      branches                  #  434.450 M/sec                    ( +-  0.30% )  (63.64%)
  31.             81,917      branch-misses             #    0.19% of all branches          ( +-  1.15% )  (63.63%)
  32.        202,487,105      L1-dcache-loads           # 2046.455 M/sec                    ( +-  0.35% )  (52.87%)
  33.          1,820,074      L1-dcache-load-misses     #    0.90% of all L1-dcache hits    ( +-  0.31% )  (24.63%)
  34.             44,857      LLC-loads                 #    0.453 M/sec                    ( +-  3.92% )  (26.48%)
  35.             41,886      LLC-load-misses           #   93.38% of all LL-cache hits     ( +- 18.52% )  (38.05%)
  36.  
  37.        0.099134577 seconds time elapsed                                          ( +-  0.29% )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement