-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlog.bench-chirag-2.7-2.8
5147 lines (4390 loc) · 249 KB
/
log.bench-chirag-2.7-2.8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# egrep "^tag=|seconds time elapsed" log.bench-chirag-2.7-2.8 | perl -lane'BEGIN{$/="tag="}; $F[0]=~s/RELEASE_//; $F[0]=~s|rurban/|0|; print "$F[0]\t$F[1]\t$F[7]" if $F[1]' > log.bench-chirag-2.7-2.8.data
branch=
tag=RELEASE_2_8_0-0-gf61b1d2
date=20140708 11:30:21 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.71 1.39 1.04 2/516 13698
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
32777.402203 task-clock (msec) # 0.951 CPUs utilized ( +- 4.84% )
3,693 context-switches # 0.113 K/sec ( +- 10.40% )
64 cpu-migrations # 0.002 K/sec ( +- 22.92% )
73,198 page-faults # 0.002 M/sec ( +- 2.44% )
30,33,87,19,079 cycles # 0.926 GHz ( +- 4.84% ) [83.26%]
14,91,57,60,103 stalled-cycles-frontend # 49.16% frontend cycles idle ( +- 4.74% ) [83.33%]
4,42,54,65,359 stalled-cycles-backend # 14.59% backend cycles idle ( +- 6.09% ) [66.78%]
43,42,09,07,458 instructions # 1.43 insns per cycle
# 0.34 stalled cycles per insn ( +- 4.27% ) [83.41%]
9,14,24,52,210 branches # 278.925 M/sec ( +- 4.26% ) [83.42%]
2,50,19,122 branch-misses # 0.27% of all branches ( +- 3.30% ) [83.27%]
34.458105647 seconds time elapsed ( +- 0.47% )
35048.320271,task-clock
4495,context-switches
135,cpu-migrations
74964,page-faults
32438273935,cycles
16263432793,stalled-cycles-frontend
4429312978,stalled-cycles-backend
45319992992,instructions
9527032466,branches
24723451,branch-misses
branch=f61b1d2fb32a43d11442fabbfa33fb00cea87fd0
tag=RELEASE_2_8_0-0-gf61b1d2
date=20140708 11:40:47 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 4.09 1.81 1.22 1/473 15410
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34113.948054 task-clock (msec) # 0.997 CPUs utilized ( +- 0.14% )
3,377 context-switches # 0.099 K/sec ( +- 3.49% )
64 cpu-migrations # 0.002 K/sec ( +- 8.81% )
74,628 page-faults # 0.002 M/sec ( +- 0.20% )
31,58,68,82,215 cycles # 0.926 GHz ( +- 0.13% ) [83.29%]
15,39,51,72,824 stalled-cycles-frontend # 48.74% frontend cycles idle ( +- 0.39% ) [83.30%]
4,44,37,58,870 stalled-cycles-backend # 14.07% backend cycles idle ( +- 2.15% ) [66.71%]
45,30,72,39,963 instructions # 1.43 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.03% ) [83.38%]
9,53,00,43,981 branches # 279.359 M/sec ( +- 0.04% ) [83.39%]
2,58,25,034 branch-misses # 0.27% of all branches ( +- 2.61% ) [83.37%]
34.229872681 seconds time elapsed ( +- 0.18% )
34524.897741,task-clock
3282,context-switches
39,cpu-migrations
74387,page-faults
31960084197,cycles
15767146089,stalled-cycles-frontend
4923633193,stalled-cycles-backend
45289700496,instructions
9533497780,branches
24286303,branch-misses
branch=768c9f70691b9e674dc878220c1aa75d676d97e0
tag=RELEASE_2_7_0-488-g768c9f7
date=20140708 11:45:24 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.50 2.19 1.49 1/471 17062
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34113.928054 task-clock (msec) # 0.995 CPUs utilized ( +- 0.28% )
3,376 context-switches # 0.099 K/sec ( +- 3.24% )
64 cpu-migrations # 0.002 K/sec ( +- 13.20% )
75,012 page-faults # 0.002 M/sec ( +- 0.17% )
31,57,83,43,470 cycles # 0.926 GHz ( +- 0.27% ) [83.29%]
15,38,97,14,998 stalled-cycles-frontend # 48.74% frontend cycles idle ( +- 0.53% ) [83.33%]
4,66,13,37,814 stalled-cycles-backend # 14.76% backend cycles idle ( +- 1.39% ) [66.77%]
45,27,08,32,327 instructions # 1.43 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.03% ) [83.41%]
9,52,14,30,178 branches # 279.107 M/sec ( +- 0.03% ) [83.42%]
2,50,70,292 branch-misses # 0.26% of all branches ( +- 2.45% ) [83.26%]
34.284971447 seconds time elapsed ( +- 0.41% )
34115.804273,task-clock
3228,context-switches
49,cpu-migrations
75390,page-faults
31593664461,cycles
15480678229,stalled-cycles-frontend
4629985942,stalled-cycles-backend
45284561273,instructions
9524584723,branches
24011709,branch-misses
branch=2a9a034f8fbf040c67f7add2f33873f7c2ac1bd2
tag=RELEASE_2_7_0-487-g2a9a034
date=20140708 11:50:00 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.52 2.36 1.68 1/470 18714
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34092.553743 task-clock (msec) # 0.996 CPUs utilized ( +- 0.24% )
3,180 context-switches # 0.093 K/sec ( +- 0.59% )
46 cpu-migrations # 0.001 K/sec ( +- 16.68% )
75,036 page-faults # 0.002 M/sec ( +- 0.33% )
31,56,77,75,924 cycles # 0.926 GHz ( +- 0.24% ) [83.28%]
15,42,86,63,906 stalled-cycles-frontend # 48.87% frontend cycles idle ( +- 0.56% ) [83.30%]
4,61,12,06,273 stalled-cycles-backend # 14.61% backend cycles idle ( +- 2.78% ) [66.76%]
45,29,76,90,028 instructions # 1.43 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.01% ) [83.41%]
9,52,89,21,747 branches # 279.502 M/sec ( +- 0.06% ) [83.40%]
2,42,68,318 branch-misses # 0.25% of all branches ( +- 0.55% ) [83.32%]
34.223405963 seconds time elapsed ( +- 0.24% )
34047.986043,task-clock
3508,context-switches
46,cpu-migrations
74915,page-faults
31521231515,cycles
15357247487,stalled-cycles-frontend
4063951850,stalled-cycles-backend
45281860324,instructions
9538791195,branches
24143970,branch-misses
branch=5322c51fd93f2ab23db9702316d9bb298217ab0d
tag=RELEASE_2_7_0-486-g5322c51
date=20140708 11:54:36 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.38 2.37 1.80 1/472 20366
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
36125.298583 task-clock (msec) # 0.997 CPUs utilized ( +- 3.01% )
3,374 context-switches # 0.093 K/sec ( +- 2.42% )
41 cpu-migrations # 0.001 K/sec ( +- 13.82% )
75,152 page-faults # 0.002 M/sec ( +- 0.34% )
33,44,61,58,124 cycles # 0.926 GHz ( +- 3.01% ) [83.26%]
15,83,87,55,151 stalled-cycles-frontend # 47.36% frontend cycles idle ( +- 1.49% ) [83.34%]
5,08,91,07,796 stalled-cycles-backend # 15.22% backend cycles idle ( +- 5.38% ) [66.76%]
45,29,47,57,396 instructions # 1.35 insns per cycle
# 0.35 stalled cycles per insn ( +- 0.02% ) [83.39%]
9,53,52,02,664 branches # 263.948 M/sec ( +- 0.04% ) [83.42%]
11,02,05,579 branch-misses # 1.16% of all branches ( +- 43.10% ) [83.27%]
36.233031764 seconds time elapsed ( +- 2.98% )
33797.087491,task-clock
3177,context-switches
42,cpu-migrations
75404,page-faults
31294630665,cycles
15116153465,stalled-cycles-frontend
4551829882,stalled-cycles-backend
45262967420,instructions
9519097112,branches
25154180,branch-misses
branch=5e7c67a87baacd550689c6909ae20de02e94a385
tag=RELEASE_2_7_0-485-g5e7c67a
date=20140708 11:59:19 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.25 2.26 1.84 1/471 22017
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34051.939387 task-clock (msec) # 0.996 CPUs utilized ( +- 0.21% )
3,202 context-switches # 0.094 K/sec ( +- 0.92% )
52 cpu-migrations # 0.002 K/sec ( +- 6.98% )
75,158 page-faults # 0.002 M/sec ( +- 0.20% )
31,53,28,46,773 cycles # 0.926 GHz ( +- 0.21% ) [83.27%]
15,29,45,66,442 stalled-cycles-frontend # 48.50% frontend cycles idle ( +- 0.56% ) [83.30%]
4,52,51,61,637 stalled-cycles-backend # 14.35% backend cycles idle ( +- 1.73% ) [66.73%]
45,27,44,92,684 instructions # 1.44 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.41%]
9,52,81,19,367 branches # 279.811 M/sec ( +- 0.01% ) [83.42%]
2,77,60,449 branch-misses # 0.29% of all branches ( +- 1.00% ) [83.34%]
34.173439412 seconds time elapsed ( +- 0.29% )
33906.562275,task-clock
3175,context-switches
48,cpu-migrations
74380,page-faults
31396020555,cycles
15191677505,stalled-cycles-frontend
4634890442,stalled-cycles-backend
45289382540,instructions
9531948429,branches
26796614,branch-misses
branch=32a21de41dadba2888c346ac475126385e228c22
tag=RELEASE_2_7_0-484-g32a21de
date=20140709 12:03:54 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.29 2.27 1.90 1/470 23673
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
33985.130122 task-clock (msec) # 0.997 CPUs utilized ( +- 0.14% )
3,181 context-switches # 0.094 K/sec ( +- 0.73% )
44 cpu-migrations # 0.001 K/sec ( +- 5.70% )
74,910 page-faults # 0.002 M/sec ( +- 0.28% )
31,46,60,26,645 cycles # 0.926 GHz ( +- 0.14% ) [83.30%]
15,22,28,34,763 stalled-cycles-frontend # 48.38% frontend cycles idle ( +- 0.32% ) [83.32%]
4,51,96,55,511 stalled-cycles-backend # 14.36% backend cycles idle ( +- 1.10% ) [66.73%]
45,27,44,20,948 instructions # 1.44 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.38%]
9,53,08,14,876 branches # 280.441 M/sec ( +- 0.03% ) [83.40%]
2,78,99,477 branch-misses # 0.29% of all branches ( +- 1.68% ) [83.30%]
34.095624892 seconds time elapsed ( +- 0.10% )
34245.712018,task-clock
3216,context-switches
46,cpu-migrations
73871,page-faults
31701621731,cycles
15531170617,stalled-cycles-frontend
4620710477,stalled-cycles-backend
45238260206,instructions
9520976639,branches
26676373,branch-misses
branch=42d331a35e1a66742ee97e62468711be9c059d32
tag=RELEASE_2_7_0-483-g42d331a
date=20140709 12:08:30 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.28 2.37 1.99 1/470 25325
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
35972.885461 task-clock (msec) # 0.997 CPUs utilized ( +- 3.24% )
3,366 context-switches # 0.094 K/sec ( +- 3.43% )
46 cpu-migrations # 0.001 K/sec ( +- 6.76% )
74,765 page-faults # 0.002 M/sec ( +- 0.17% )
33,30,40,54,873 cycles # 0.926 GHz ( +- 3.24% ) [83.29%]
15,60,86,98,678 stalled-cycles-frontend # 46.87% frontend cycles idle ( +- 1.45% ) [83.32%]
5,02,39,43,619 stalled-cycles-backend # 15.09% backend cycles idle ( +- 6.02% ) [66.75%]
45,27,77,44,977 instructions # 1.36 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.01% ) [83.41%]
9,52,95,14,815 branches # 264.908 M/sec ( +- 0.03% ) [83.40%]
11,14,14,544 branch-misses # 1.17% of all branches ( +- 43.70% ) [83.31%]
36.093012692 seconds time elapsed ( +- 3.20% )
34048.978183,task-clock
3135,context-switches
50,cpu-migrations
74380,page-faults
31528218367,cycles
15323983173,stalled-cycles-frontend
4501892504,stalled-cycles-backend
45290244365,instructions
9532220417,branches
26363821,branch-misses
branch=1f2a5c0879fa5737043ee41cbabf46bdcbb3e5f6
tag=RELEASE_2_7_0-482-g1f2a5c0
date=20140709 12:13:13 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.38 2.32 2.01 1/471 26978
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
35217.996199 task-clock (msec) # 0.995 CPUs utilized ( +- 2.94% )
3,373 context-switches # 0.096 K/sec ( +- 2.65% )
62 cpu-migrations # 0.002 K/sec ( +- 13.25% )
74,906 page-faults # 0.002 M/sec ( +- 0.28% )
32,60,84,95,865 cycles # 0.926 GHz ( +- 2.94% ) [83.28%]
15,66,69,84,953 stalled-cycles-frontend # 48.05% frontend cycles idle ( +- 1.84% ) [83.32%]
4,84,83,34,064 stalled-cycles-backend # 14.87% backend cycles idle ( +- 5.55% ) [66.76%]
45,28,18,89,977 instructions # 1.39 insns per cycle
# 0.35 stalled cycles per insn ( +- 0.01% ) [83.41%]
9,52,81,71,574 branches # 270.548 M/sec ( +- 0.02% ) [83.40%]
7,03,94,050 branch-misses # 0.74% of all branches ( +- 58.80% ) [83.30%]
35.379795460 seconds time elapsed ( +- 2.87% )
34032.960851,task-clock
3246,context-switches
43,cpu-migrations
74383,page-faults
31521101582,cycles
15324470676,stalled-cycles-frontend
4592711933,stalled-cycles-backend
45285133745,instructions
9520559822,branches
26302911,branch-misses
branch=c990de2ac69c48950f5249a53c48b9c06f17b120
tag=RELEASE_2_7_0-481-gc990de2
date=20140709 12:17:54 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.61 2.35 2.04 1/471 28633
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
35003.019790 task-clock (msec) # 0.997 CPUs utilized ( +- 2.68% )
3,270 context-switches # 0.093 K/sec ( +- 2.76% )
38 cpu-migrations # 0.001 K/sec ( +- 17.50% )
74,900 page-faults # 0.002 M/sec ( +- 0.40% )
32,40,94,19,841 cycles # 0.926 GHz ( +- 2.68% ) [83.28%]
15,50,40,84,715 stalled-cycles-frontend # 47.84% frontend cycles idle ( +- 1.19% ) [83.32%]
4,93,42,60,646 stalled-cycles-backend # 15.22% backend cycles idle ( +- 5.80% ) [66.77%]
45,27,59,27,992 instructions # 1.40 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.41%]
9,52,61,96,341 branches # 272.154 M/sec ( +- 0.03% ) [83.41%]
6,77,55,442 branch-misses # 0.71% of all branches ( +- 60.03% ) [83.27%]
35.120641834 seconds time elapsed ( +- 2.73% )
34250.655588,task-clock
3188,context-switches
52,cpu-migrations
74908,page-faults
31708664038,cycles
15513727169,stalled-cycles-frontend
4700781507,stalled-cycles-backend
45271881226,instructions
9535346181,branches
28347934,branch-misses
branch=46d6e0bbdfafa7316d40dafe85958576dd5e7e84
tag=RELEASE_2_7_0-480-g46d6e0b
date=20140709 12:21:42 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
branch=fabb1bfebbbb17a7cd49cb3463696f10a2ca6505
tag=RELEASE_2_7_0-479-gfabb1bf
date=20140709 12:23:28 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.87 2.57 2.15 1/471 31308
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34035.735827 task-clock (msec) # 0.997 CPUs utilized ( +- 0.11% )
3,208 context-switches # 0.094 K/sec ( +- 1.09% )
52 cpu-migrations # 0.002 K/sec ( +- 9.61% )
74,770 page-faults # 0.002 M/sec ( +- 0.33% )
31,51,66,70,373 cycles # 0.926 GHz ( +- 0.11% ) [83.25%]
15,27,62,05,001 stalled-cycles-frontend # 48.47% frontend cycles idle ( +- 0.30% ) [83.29%]
4,55,04,93,140 stalled-cycles-backend # 14.44% backend cycles idle ( +- 0.52% ) [66.73%]
45,27,79,00,100 instructions # 1.44 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.41%]
9,52,84,58,295 branches # 279.955 M/sec ( +- 0.00% ) [83.43%]
2,80,86,250 branch-misses # 0.29% of all branches ( +- 2.19% ) [83.36%]
34.154916885 seconds time elapsed ( +- 0.05% )
34117.692549,task-clock
3190,context-switches
51,cpu-migrations
74381,page-faults
31583546594,cycles
15274505235,stalled-cycles-frontend
4638932437,stalled-cycles-backend
45238148204,instructions
9526158971,branches
31675033,branch-misses
branch=8b2565354a985bc94c09fb07b5b4719cfd6ba7be
tag=RELEASE_2_7_0-478-g8b25653
date=20140709 12:28:04 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.80 2.54 2.18 1/471 504
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34296.849181 task-clock (msec) # 0.997 CPUs utilized ( +- 0.06% )
3,214 context-switches # 0.094 K/sec ( +- 0.58% )
41 cpu-migrations # 0.001 K/sec ( +- 18.17% )
74,378 page-faults # 0.002 M/sec ( +- 0.01% )
31,75,32,86,955 cycles # 0.926 GHz ( +- 0.06% ) [83.25%]
15,50,58,56,628 stalled-cycles-frontend # 48.83% frontend cycles idle ( +- 0.15% ) [83.32%]
4,72,11,01,046 stalled-cycles-backend # 14.87% backend cycles idle ( +- 0.42% ) [66.75%]
45,27,24,78,322 instructions # 1.43 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.40%]
9,52,86,92,426 branches # 277.830 M/sec ( +- 0.03% ) [83.42%]
2,92,25,306 branch-misses # 0.31% of all branches ( +- 1.19% ) [83.32%]
34.411128640 seconds time elapsed ( +- 0.05% )
34158.346874,task-clock
3190,context-switches
59,cpu-migrations
74376,page-faults
31630441751,cycles
15441696225,stalled-cycles-frontend
4524124994,stalled-cycles-backend
45272376295,instructions
9527922013,branches
26994789,branch-misses
branch=9cb91bdaeda8235f8694668a0721ec380957a378
tag=RELEASE_2_7_0-477-g9cb91bd
date=20140709 12:32:40 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.65 2.48 2.18 1/470 2401
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34041.266706 task-clock (msec) # 0.997 CPUs utilized ( +- 0.08% )
3,166 context-switches # 0.093 K/sec ( +- 0.44% )
43 cpu-migrations # 0.001 K/sec ( +- 12.07% )
74,886 page-faults # 0.002 M/sec ( +- 0.28% )
31,51,68,10,686 cycles # 0.926 GHz ( +- 0.08% ) [83.29%]
15,30,95,80,406 stalled-cycles-frontend # 48.58% frontend cycles idle ( +- 0.19% ) [83.33%]
4,60,10,30,732 stalled-cycles-backend # 14.60% backend cycles idle ( +- 0.32% ) [66.76%]
45,26,71,86,195 instructions # 1.44 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.40%]
9,52,60,63,360 branches # 279.839 M/sec ( +- 0.05% ) [83.41%]
2,47,57,754 branch-misses # 0.26% of all branches ( +- 0.82% ) [83.27%]
34.152510036 seconds time elapsed ( +- 0.11% )
34875.077033,task-clock
3212,context-switches
50,cpu-migrations
74371,page-faults
32285694195,cycles
15740020560,stalled-cycles-frontend
5008313747,stalled-cycles-backend
45242371836,instructions
9529557740,branches
44012313,branch-misses
branch=51bdf49b6e7a59c72d90d19adf3609101dfef742
tag=RELEASE_2_7_0-476-g51bdf49
date=20140709 12:37:16 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.54 2.41 2.17 1/470 4063
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34026.477200 task-clock (msec) # 0.996 CPUs utilized ( +- 0.27% )
3,144 context-switches # 0.092 K/sec ( +- 0.85% )
44 cpu-migrations # 0.001 K/sec ( +- 18.22% )
74,700 page-faults # 0.002 M/sec ( +- 0.17% )
31,50,28,52,078 cycles # 0.926 GHz ( +- 0.27% ) [83.31%]
15,32,50,99,982 stalled-cycles-frontend # 48.65% frontend cycles idle ( +- 0.71% ) [83.29%]
4,66,72,34,190 stalled-cycles-backend # 14.82% backend cycles idle ( +- 0.56% ) [66.70%]
45,27,22,79,916 instructions # 1.44 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.39%]
9,52,69,44,288 branches # 279.986 M/sec ( +- 0.01% ) [83.40%]
2,37,01,825 branch-misses # 0.25% of all branches ( +- 0.85% ) [83.36%]
34.163249484 seconds time elapsed ( +- 0.38% )
33913.577349,task-clock
3294,context-switches
39,cpu-migrations
73793,page-faults
31396091730,cycles
15280441523,stalled-cycles-frontend
4584829002,stalled-cycles-backend
45269659482,instructions
9538954435,branches
22939303,branch-misses
branch=be0fbdb0f23c9eec87ace2570789432688a804d6
tag=RELEASE_2_7_0-475-gbe0fbdb
date=20140709 12:41:51 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.49 2.38 2.16 1/470 5714
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34029.010538 task-clock (msec) # 0.996 CPUs utilized ( +- 0.11% )
3,153 context-switches # 0.093 K/sec ( +- 0.55% )
54 cpu-migrations # 0.002 K/sec ( +- 10.68% )
74,566 page-faults # 0.002 M/sec ( +- 0.20% )
31,51,03,51,460 cycles # 0.926 GHz ( +- 0.10% ) [83.29%]
15,31,39,17,005 stalled-cycles-frontend # 48.60% frontend cycles idle ( +- 0.24% ) [83.31%]
4,49,60,03,749 stalled-cycles-backend # 14.27% backend cycles idle ( +- 0.56% ) [66.72%]
45,28,31,68,762 instructions # 1.44 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.03% ) [83.39%]
9,52,60,89,478 branches # 279.940 M/sec ( +- 0.05% ) [83.39%]
2,40,63,498 branch-misses # 0.25% of all branches ( +- 0.25% ) [83.34%]
34.155157013 seconds time elapsed ( +- 0.05% )
34043.034701,task-clock
3177,context-switches
44,cpu-migrations
74317,page-faults
31518712638,cycles
15378621477,stalled-cycles-frontend
4598350235,stalled-cycles-backend
45269039517,instructions
9532429845,branches
24024500,branch-misses
branch=3743104fa4ba5e0cbbfbc591f301b5b28787fbbe
tag=RELEASE_2_7_0-474-g3743104
date=20140709 12:46:26 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.41 2.34 2.14 1/470 7366
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
33830.170330 task-clock (msec) # 0.997 CPUs utilized ( +- 0.15% )
3,150 context-switches # 0.093 K/sec ( +- 0.69% )
35 cpu-migrations # 0.001 K/sec ( +- 22.41% )
74,558 page-faults # 0.002 M/sec ( +- 0.20% )
31,32,29,49,618 cycles # 0.926 GHz ( +- 0.15% ) [83.29%]
15,11,29,68,992 stalled-cycles-frontend # 48.25% frontend cycles idle ( +- 0.33% ) [83.30%]
4,55,33,24,738 stalled-cycles-backend # 14.54% backend cycles idle ( +- 1.13% ) [66.70%]
45,25,56,76,218 instructions # 1.44 insns per cycle
# 0.33 stalled cycles per insn ( +- 0.01% ) [83.38%]
9,52,56,34,478 branches # 281.572 M/sec ( +- 0.03% ) [83.40%]
2,37,30,402 branch-misses # 0.25% of all branches ( +- 0.71% ) [83.36%]
33.935697184 seconds time elapsed ( +- 0.19% )
34256.108971,task-clock
3185,context-switches
54,cpu-migrations
74819,page-faults
31719578852,cycles
15602450192,stalled-cycles-frontend
4320704257,stalled-cycles-backend
45275354264,instructions
9530362944,branches
23807360,branch-misses
branch=2258f03bf4a15ca428b37b436f639f92fc03d5aa
tag=RELEASE_2_7_0-473-g2258f03
date=20140709 12:51:00 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.49 2.39 2.16 1/469 9093
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
33920.172690 task-clock (msec) # 0.997 CPUs utilized ( +- 0.19% )
3,155 context-switches # 0.093 K/sec ( +- 0.71% )
35 cpu-migrations # 0.001 K/sec ( +- 14.52% )
74,820 page-faults # 0.002 M/sec ( +- 0.28% )
31,40,93,73,948 cycles # 0.926 GHz ( +- 0.19% ) [83.30%]
15,23,46,99,009 stalled-cycles-frontend # 48.50% frontend cycles idle ( +- 0.48% ) [83.29%]
4,62,13,74,969 stalled-cycles-backend # 14.71% backend cycles idle ( +- 0.90% ) [66.72%]
45,27,22,87,789 instructions # 1.44 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.39%]
9,52,62,87,946 branches # 280.844 M/sec ( +- 0.05% ) [83.40%]
2,37,15,154 branch-misses # 0.25% of all branches ( +- 0.18% ) [83.35%]
34.031350893 seconds time elapsed ( +- 0.15% )
34084.086163,task-clock
3329,context-switches
40,cpu-migrations
74321,page-faults
31560977182,cycles
15377870272,stalled-cycles-frontend
4512057372,stalled-cycles-backend
45264031544,instructions
9519431157,branches
23233517,branch-misses
branch=7f213aa0151b3c93a76089e7f1eaf392f527ffe0
tag=RELEASE_2_7_0-472-g7f213aa
date=20140709 12:55:35 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.34 2.38 2.16 1/471 10768
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
32481.653919 task-clock (msec) # 0.952 CPUs utilized ( +- 4.83% )
3,104 context-switches # 0.096 K/sec ( +- 5.50% )
48 cpu-migrations # 0.001 K/sec ( +- 8.49% )
72,832 page-faults # 0.002 M/sec ( +- 2.55% )
30,07,28,40,770 cycles # 0.926 GHz ( +- 4.82% ) [83.26%]
14,66,90,73,991 stalled-cycles-frontend # 48.78% frontend cycles idle ( +- 4.79% ) [83.30%]
4,25,26,93,533 stalled-cycles-backend # 14.14% backend cycles idle ( +- 6.68% ) [66.74%]
43,41,69,92,998 instructions # 1.44 insns per cycle
# 0.34 stalled cycles per insn ( +- 4.26% ) [83.40%]
9,14,08,61,951 branches # 281.416 M/sec ( +- 4.27% ) [83.43%]
2,32,20,563 branch-misses # 0.25% of all branches ( +- 1.28% ) [83.32%]
34.111664484 seconds time elapsed ( +- 0.16% )
34120.858422,task-clock
3199,context-switches
49,cpu-migrations
74848,page-faults
31585837724,cycles
15378377071,stalled-cycles-frontend
4588148493,stalled-cycles-backend
45259137363,instructions
9516748118,branches
23975583,branch-misses
branch=95dfaefcf6c0e9dd59bcb03881543635d6f8b00a
tag=RELEASE_2_7_0-471-g95dfaef
date=20140709 01:00:10 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.51 2.37 2.15 1/471 12441
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34261.212134 task-clock (msec) # 0.996 CPUs utilized ( +- 0.36% )
3,538 context-switches # 0.103 K/sec ( +- 4.75% )
56 cpu-migrations # 0.002 K/sec ( +- 13.60% )
74,595 page-faults # 0.002 M/sec ( +- 0.20% )
31,72,11,72,589 cycles # 0.926 GHz ( +- 0.36% ) [83.31%]
15,55,17,35,305 stalled-cycles-frontend # 49.03% frontend cycles idle ( +- 0.66% ) [83.28%]
4,54,69,79,135 stalled-cycles-backend # 14.33% backend cycles idle ( +- 2.86% ) [66.69%]
45,27,60,38,835 instructions # 1.43 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.38%]
9,52,99,36,239 branches # 278.155 M/sec ( +- 0.04% ) [83.40%]
2,40,20,347 branch-misses # 0.25% of all branches ( +- 1.52% ) [83.37%]
34.409275568 seconds time elapsed ( +- 0.45% )
34194.330580,task-clock
3863,context-switches
68,cpu-migrations
74847,page-faults
31653610085,cycles
15485792817,stalled-cycles-frontend
4510757562,stalled-cycles-backend
45311456450,instructions
9532193817,branches
23553748,branch-misses
branch=f3165dfd2800512e6913687d2b3258429d198719
tag=RELEASE_2_7_0-470-gf3165df
date=20140709 01:04:47 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.63 2.48 2.20 1/387 14114
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34459.184650 task-clock (msec) # 0.996 CPUs utilized ( +- 0.35% )
4,276 context-switches # 0.124 K/sec ( +- 6.42% )
63 cpu-migrations # 0.002 K/sec ( +- 9.98% )
75,093 page-faults # 0.002 M/sec ( +- 0.19% )
31,89,81,48,457 cycles # 0.926 GHz ( +- 0.35% ) [83.26%]
15,68,82,36,470 stalled-cycles-frontend # 49.18% frontend cycles idle ( +- 0.80% ) [83.32%]
4,58,30,26,824 stalled-cycles-backend # 14.37% backend cycles idle ( +- 2.05% ) [66.75%]
45,29,04,65,333 instructions # 1.42 insns per cycle
# 0.35 stalled cycles per insn ( +- 0.02% ) [83.42%]
9,53,74,89,778 branches # 276.776 M/sec ( +- 0.04% ) [83.43%]
2,38,67,150 branch-misses # 0.25% of all branches ( +- 1.54% ) [83.30%]
34.601126775 seconds time elapsed ( +- 0.32% )
34416.660291,task-clock
3827,context-switches
44,cpu-migrations
74330,page-faults
31857339705,cycles
15561830031,stalled-cycles-frontend
4768734113,stalled-cycles-backend
45272382276,instructions
9524577903,branches
26885741,branch-misses
branch=c4d1cd56ab724dd0dcecb0573175d20465bd7ec5
tag=RELEASE_2_7_0-469-gc4d1cd5
date=20140709 01:09:25 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.34 2.44 2.21 1/386 15855
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34219.869487 task-clock (msec) # 0.997 CPUs utilized ( +- 0.11% )
3,361 context-switches # 0.098 K/sec ( +- 4.45% )
41 cpu-migrations # 0.001 K/sec ( +- 7.52% )
74,962 page-faults # 0.002 M/sec ( +- 0.17% )
31,68,46,89,442 cycles # 0.926 GHz ( +- 0.11% ) [83.29%]
15,43,83,85,291 stalled-cycles-frontend # 48.73% frontend cycles idle ( +- 0.33% ) [83.31%]
4,61,26,01,456 stalled-cycles-backend # 14.56% backend cycles idle ( +- 0.76% ) [66.75%]
45,29,62,41,101 instructions # 1.43 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.41%]
9,52,72,78,454 branches # 278.414 M/sec ( +- 0.07% ) [83.39%]
2,46,73,195 branch-misses # 0.26% of all branches ( +- 1.52% ) [83.32%]
34.333746728 seconds time elapsed ( +- 0.15% )
33992.352036,task-clock
3059,context-switches
29,cpu-migrations
74315,page-faults
31476552873,cycles
15184232987,stalled-cycles-frontend
4653064999,stalled-cycles-backend
45286216019,instructions
9533410586,branches
25756478,branch-misses
branch=7549a9706a44190212a287b0ca9acdf8d7baf3fd
tag=RELEASE_2_7_0-468-g7549a97
date=20140709 01:14:01 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.69 2.46 2.22 1/377 17505
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34081.771461 task-clock (msec) # 0.997 CPUs utilized ( +- 0.07% )
3,149 context-switches # 0.092 K/sec ( +- 1.47% )
38 cpu-migrations # 0.001 K/sec ( +- 11.05% )
74,575 page-faults # 0.002 M/sec ( +- 0.19% )
31,55,45,05,132 cycles # 0.926 GHz ( +- 0.07% ) [83.27%]
15,32,89,60,723 stalled-cycles-frontend # 48.58% frontend cycles idle ( +- 0.07% ) [83.33%]
4,47,96,62,039 stalled-cycles-backend # 14.20% backend cycles idle ( +- 1.99% ) [66.77%]
45,28,43,38,682 instructions # 1.44 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.41%]
9,52,69,07,144 branches # 279.531 M/sec ( +- 0.01% ) [83.42%]
2,40,70,792 branch-misses # 0.25% of all branches ( +- 1.98% ) [83.26%]
34.179658283 seconds time elapsed ( +- 0.09% )
33900.841410,task-clock
3067,context-switches
31,cpu-migrations
75334,page-faults
31394499692,cycles
15222362305,stalled-cycles-frontend
4498111930,stalled-cycles-backend
45268034727,instructions
9527567201,branches
22990495,branch-misses
branch=53a2640383cb308d388b5211ce3fe6d784ce9426
tag=RELEASE_2_7_0-467-g53a2640
date=20140709 01:18:35 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.43 2.33 2.16 1/377 19158
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34012.386993 task-clock (msec) # 0.997 CPUs utilized ( +- 0.08% )
3,072 context-switches # 0.090 K/sec ( +- 0.61% )
30 cpu-migrations # 0.001 K/sec ( +- 5.10% )
74,960 page-faults # 0.002 M/sec ( +- 0.33% )
31,49,29,97,179 cycles # 0.926 GHz ( +- 0.09% ) [83.27%]
15,26,91,59,427 stalled-cycles-frontend # 48.48% frontend cycles idle ( +- 0.21% ) [83.32%]
4,53,23,92,274 stalled-cycles-backend # 14.39% backend cycles idle ( +- 1.05% ) [66.78%]
45,27,95,61,532 instructions # 1.44 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.01% ) [83.41%]
9,52,67,84,644 branches # 280.098 M/sec ( +- 0.04% ) [83.41%]
2,45,71,747 branch-misses # 0.26% of all branches ( +- 2.25% ) [83.27%]
34.113163115 seconds time elapsed ( +- 0.09% )
34208.831299,task-clock
3085,context-switches
24,cpu-migrations
74839,page-faults
31665847255,cycles
15489766244,stalled-cycles-frontend
4627704640,stalled-cycles-backend
45299006216,instructions
9528738565,branches
25565720,branch-misses
branch=cc793e7ddfedf226fe495c23b167399bc3a7744c
tag=RELEASE_2_7_0-466-gcc793e7
date=20140709 01:23:10 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.33 2.31 2.14 1/377 20806
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34155.815808 task-clock (msec) # 0.997 CPUs utilized ( +- 0.12% )
3,104 context-switches # 0.091 K/sec ( +- 0.58% )
34 cpu-migrations # 0.001 K/sec ( +- 10.71% )
74,826 page-faults # 0.002 M/sec ( +- 0.40% )
31,62,71,17,227 cycles # 0.926 GHz ( +- 0.13% ) [83.31%]
15,44,41,05,712 stalled-cycles-frontend # 48.83% frontend cycles idle ( +- 0.20% ) [83.32%]
4,55,66,16,606 stalled-cycles-backend # 14.41% backend cycles idle ( +- 1.83% ) [66.74%]
45,28,60,82,601 instructions # 1.43 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.39%]
9,52,48,82,462 branches # 278.866 M/sec ( +- 0.04% ) [83.38%]
2,45,67,409 branch-misses # 0.26% of all branches ( +- 2.08% ) [83.31%]
34.271550314 seconds time elapsed ( +- 0.06% )
34119.403324,task-clock
3174,context-switches
40,cpu-migrations
74837,page-faults
31594401786,cycles
15364191279,stalled-cycles-frontend
4496843490,stalled-cycles-backend
45275061331,instructions
9532122139,branches
26178616,branch-misses
branch=a1378a1f71c292b710a519e19f074df57c037f9e
tag=RELEASE_2_7_0-465-ga1378a1
date=20140709 01:27:45 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.20 2.26 2.11 1/377 22455
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34172.208585 task-clock (msec) # 0.997 CPUs utilized ( +- 0.20% )
3,433 context-switches # 0.100 K/sec ( +- 0.61% )
41 cpu-migrations # 0.001 K/sec ( +- 15.14% )
74,832 page-faults # 0.002 M/sec ( +- 0.27% )
31,64,19,34,441 cycles # 0.926 GHz ( +- 0.20% ) [83.28%]
15,38,95,24,808 stalled-cycles-frontend # 48.64% frontend cycles idle ( +- 0.36% ) [83.31%]
4,50,08,39,355 stalled-cycles-backend # 14.22% backend cycles idle ( +- 2.89% ) [66.75%]
45,30,08,71,486 instructions # 1.43 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.01% ) [83.40%]
9,53,20,69,233 branches # 278.942 M/sec ( +- 0.05% ) [83.39%]
2,67,00,710 branch-misses # 0.28% of all branches ( +- 3.20% ) [83.34%]
34.277036552 seconds time elapsed ( +- 0.20% )
34115.711890,task-clock
3362,context-switches
40,cpu-migrations
75331,page-faults
31594977584,cycles
15350275707,stalled-cycles-frontend
4471916756,stalled-cycles-backend
45279578135,instructions
9514902928,branches
25393151,branch-misses
branch=a67548e9d302b632d6e531a8371ef2a633f7200e
tag=RELEASE_2_7_0-464-ga67548e
date=20140709 01:32:20 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.41 2.30 2.10 1/377 24103
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34285.081060 task-clock (msec) # 0.996 CPUs utilized ( +- 0.13% )
3,426 context-switches # 0.100 K/sec ( +- 0.54% )
40 cpu-migrations # 0.001 K/sec ( +- 5.12% )
74,958 page-faults # 0.002 M/sec ( +- 0.17% )
31,74,60,72,740 cycles # 0.926 GHz ( +- 0.14% ) [83.28%]
15,37,59,68,299 stalled-cycles-frontend # 48.43% frontend cycles idle ( +- 0.20% ) [83.31%]
4,54,84,47,620 stalled-cycles-backend # 14.33% backend cycles idle ( +- 0.95% ) [66.74%]
45,26,48,31,503 instructions # 1.43 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.01% ) [83.41%]
9,52,01,32,637 branches # 277.676 M/sec ( +- 0.03% ) [83.43%]
2,93,44,937 branch-misses # 0.31% of all branches ( +- 4.22% ) [83.29%]
34.408300415 seconds time elapsed ( +- 0.17% )
34316.203569,task-clock
3493,context-switches
43,cpu-migrations
74305,page-faults
31773446889,cycles
15385195286,stalled-cycles-frontend
4495297042,stalled-cycles-backend
45258066889,instructions
9522720713,branches
30533991,branch-misses
branch=6120e2f1ffa0ebefabf7f054c86e606a14a06b68
tag=RELEASE_2_7_0-463-g6120e2f
date=20140709 01:36:56 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.45 2.32 2.10 1/376 25752
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
28618.312770 task-clock (msec) # 0.997 CPUs utilized ( +- 16.27% )
2,880 context-switches # 0.101 K/sec ( +- 15.63% )
30 cpu-migrations # 0.001 K/sec ( +- 9.19% )
75,328 page-faults # 0.003 M/sec ( +- 0.01% )
32,12,17,12,072 cycles # 1.122 GHz ( +- 1.19% ) [83.27%]
15,76,74,49,989 stalled-cycles-frontend # 49.09% frontend cycles idle ( +- 2.71% ) [83.32%]
5,08,40,58,473 stalled-cycles-backend # 15.83% backend cycles idle ( +- 7.27% ) [66.77%]
45,23,80,25,994 instructions # 1.41 insns per cycle
# 0.35 stalled cycles per insn ( +- 0.07% ) [83.42%]
9,52,42,01,336 branches # 332.801 M/sec ( +- 0.03% ) [83.43%]
2,95,73,705 branch-misses # 0.31% of all branches ( +- 6.84% ) [83.28%]
28.699432376 seconds time elapsed ( +- 16.29% )
14885.963532,task-clock
1566,context-switches
22,cpu-migrations
74811,page-faults
33409653709,cycles
17108658621,stalled-cycles-frontend
6228776175,stalled-cycles-backend
45225681714,instructions
9520906728,branches
28705356,branch-misses
branch=b984a2c77fda57757f9bd393e97462cd92e20074
tag=RELEASE_2_7_0-462-gb984a2c
date=20140709 01:39:54 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 2.60 2.13 2.05 1/377 27400
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
14863.160077 task-clock (msec) # 0.994 CPUs utilized ( +- 0.13% )
1,547 context-switches # 0.104 K/sec ( +- 0.86% )
30 cpu-migrations # 0.002 K/sec ( +- 5.10% )
75,210 page-faults # 0.005 M/sec ( +- 0.18% )
33,32,87,88,006 cycles # 2.242 GHz ( +- 0.15% ) [83.26%]
17,01,13,90,370 stalled-cycles-frontend # 51.04% frontend cycles idle ( +- 0.37% ) [83.26%]
6,05,28,25,797 stalled-cycles-backend # 18.16% backend cycles idle ( +- 1.35% ) [66.72%]
45,18,19,13,274 instructions # 1.36 insns per cycle
# 0.38 stalled cycles per insn ( +- 0.01% ) [83.47%]
9,51,33,83,684 branches # 640.065 M/sec ( +- 0.05% ) [83.55%]
2,80,92,752 branch-misses # 0.30% of all branches ( +- 2.59% ) [83.33%]
14.948903834 seconds time elapsed ( +- 0.44% )
14845.083174,task-clock
1572,context-switches
34,cpu-migrations
74830,page-faults
33301439188,cycles
16993130642,stalled-cycles-frontend
6157622060,stalled-cycles-backend
45182863962,instructions
9511522789,branches
28329023,branch-misses
branch=900c0f70f1639760112f5180c2c5f2e021af644a
tag=RELEASE_2_7_0-461-g900c0f7
date=20140709 01:42:06 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 2.85 2.17 2.06 1/377 29047
Performance counter stats for '../parrot-bench/run-bench.sh' (4 runs):
34224.620893 task-clock (msec) # 0.996 CPUs utilized ( +- 0.17% )
3,414 context-switches # 0.100 K/sec ( +- 0.69% )
33 cpu-migrations # 0.001 K/sec ( +- 17.21% )
75,068 page-faults # 0.002 M/sec ( +- 0.20% )
31,69,32,72,316 cycles # 0.926 GHz ( +- 0.17% ) [83.29%]
15,35,18,93,804 stalled-cycles-frontend # 48.44% frontend cycles idle ( +- 0.34% ) [83.29%]
4,70,59,17,154 stalled-cycles-backend # 14.85% backend cycles idle ( +- 0.57% ) [66.73%]
45,28,57,38,323 instructions # 1.43 insns per cycle
# 0.34 stalled cycles per insn ( +- 0.02% ) [83.42%]
9,53,13,96,804 branches # 278.495 M/sec ( +- 0.03% ) [83.41%]
2,85,95,836 branch-misses # 0.30% of all branches ( +- 1.82% ) [83.34%]
34.351607031 seconds time elapsed ( +- 0.17% )
34102.583843,task-clock
3438,context-switches
34,cpu-migrations
74810,page-faults
31568650525,cycles
15315072872,stalled-cycles-frontend
4570093804,stalled-cycles-backend
45267365968,instructions
9539686844,branches
26963812,branch-misses
branch=d7c6671a80d8c8682b9d3d7101fb58e7a8b1c81d
tag=RELEASE_2_7_0-460-gd7c6671
date=20140709 01:46:42 IST
cc=cc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
optimize=-O3
loadavg 3.39 2.25 2.06 1/377 30695