-
Notifications
You must be signed in to change notification settings - Fork 22
/
MMBench_all.htm
3203 lines (3192 loc) · 152 KB
/
MMBench_all.htm
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
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 12">
<link rel=File-List href="MMBench_all_bestanden/filelist.xml">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
x\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<style id="MMBench_all_18243_Styles"><!--table
{mso-displayed-decimal-separator:"\,";
mso-displayed-thousand-separator:"\.";}
.xl1518243
{padding:0px;
mso-ignore:padding;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Calibri, sans-serif;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl6318243
{padding:0px;
mso-ignore:padding;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Calibri, sans-serif;
mso-font-charset:0;
mso-number-format:"0\.0";
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl6418243
{padding:0px;
mso-ignore:padding;
color:black;
font-size:11.0pt;
font-weight:700;
font-style:normal;
text-decoration:none;
font-family:Calibri, sans-serif;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl6518243
{padding:0px;
mso-ignore:padding;
color:#1F497D;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Calibri, sans-serif;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl6618243
{padding:0px;
mso-ignore:padding;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Calibri, sans-serif;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
background:#D8D8D8;
mso-pattern:black none;
white-space:nowrap;}
.xl6718243
{padding:0px;
mso-ignore:padding;
color:black;
font-size:11.0pt;
font-weight:700;
font-style:normal;
text-decoration:none;
font-family:Calibri, sans-serif;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
background:#D8D8D8;
mso-pattern:black none;
white-space:nowrap;}
.xl6818243
{padding:0px;
mso-ignore:padding;
color:red;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Calibri, sans-serif;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl6918243
{padding:0px;
mso-ignore:padding;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Calibri, sans-serif;
mso-font-charset:0;
mso-number-format:0%;
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl7018243
{padding:0px;
mso-ignore:padding;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:normal;
text-decoration:none;
font-family:Calibri, sans-serif;
mso-font-charset:0;
mso-number-format:Percent;
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl7118243
{padding:0px;
mso-ignore:padding;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:italic;
text-decoration:none;
font-family:Calibri, sans-serif;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
.xl7218243
{padding:0px;
mso-ignore:padding;
color:black;
font-size:11.0pt;
font-weight:400;
font-style:italic;
text-decoration:underline;
text-underline-style:single;
font-family:Calibri, sans-serif;
mso-font-charset:0;
mso-number-format:General;
text-align:general;
vertical-align:bottom;
mso-background-source:auto;
mso-pattern:auto;
white-space:nowrap;}
--></style>
</head>
<body>
<!--[if !excel]> <![endif]-->
<!--De volgende informatie is gegenereerd door de wizard Publiceren als
webpagina van Microsoft Office Excel.-->
<!--Als hetzelfde item opnieuw wordt gepubliceerd vanuit Excel, worden alle
gegevens tussen de DIV-codes vervangen.-->
<!----------------------------->
<!--BEGIN VAN UITVOER VAN DE EXCEL-WIZARD PUBLICEREN ALS WEBPAGINA -->
<!----------------------------->
<div id="MMBench_all_18243" align=center x:publishsource="Excel">
<table border=0 cellpadding=0 cellspacing=0 width=2317 style='border-collapse:
collapse;table-layout:fixed;width:1741pt'>
<col width=244 style='mso-width-source:userset;mso-width-alt:8923;width:183pt'>
<col width=192 style='mso-width-source:userset;mso-width-alt:7021;width:144pt'>
<col width=87 style='mso-width-source:userset;mso-width-alt:3181;width:65pt'>
<col width=58 style='mso-width-source:userset;mso-width-alt:2121;width:44pt'>
<col width=114 style='mso-width-source:userset;mso-width-alt:4169;width:86pt'>
<col width=51 style='mso-width-source:userset;mso-width-alt:1865;width:38pt'>
<col width=107 style='mso-width-source:userset;mso-width-alt:3913;width:80pt'>
<col width=50 style='mso-width-source:userset;mso-width-alt:1828;width:38pt'>
<col width=102 style='mso-width-source:userset;mso-width-alt:3730;width:77pt'>
<col width=53 style='mso-width-source:userset;mso-width-alt:1938;width:40pt'>
<col width=98 style='mso-width-source:userset;mso-width-alt:3584;width:74pt'>
<col width=53 style='mso-width-source:userset;mso-width-alt:1938;width:40pt'>
<col width=118 style='mso-width-source:userset;mso-width-alt:4315;width:89pt'>
<col width=50 style='mso-width-source:userset;mso-width-alt:1828;width:38pt'>
<col width=112 style='mso-width-source:userset;mso-width-alt:4096;width:84pt'>
<col width=60 style='mso-width-source:userset;mso-width-alt:2194;width:45pt'>
<col width=64 span=12 style='width:48pt'>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl6718243 width=244 style='height:15.0pt;width:183pt'>MM</td>
<td class=xl6718243 width=192 style='width:144pt'> </td>
<td class=xl6718243 width=87 style='width:65pt'> </td>
<td class=xl6718243 width=58 style='width:44pt'>D2010</td>
<td class=xl6718243 width=114 style='width:86pt'> </td>
<td class=xl6718243 colspan=2 width=158 style='width:118pt'>ScaleMM2</td>
<td class=xl6718243 colspan=2 width=152 style='width:115pt'>TCMalloc</td>
<td class=xl6718243 colspan=2 width=151 style='width:114pt'>MSVCRT</td>
<td class=xl6718243 colspan=2 width=171 style='width:129pt'>TopMM</td>
<td class=xl6718243 colspan=2 width=162 style='width:122pt'>JeMalloc</td>
<td class=xl6718243 width=60 style='width:45pt'>Hoard</td>
<td class=xl1518243 width=64 style='width:48pt'></td>
<td class=xl1518243 width=64 style='width:48pt'></td>
<td class=xl1518243 width=64 style='width:48pt'></td>
<td class=xl1518243 width=64 style='width:48pt'></td>
<td class=xl1518243 width=64 style='width:48pt'></td>
<td class=xl1518243 width=64 style='width:48pt'></td>
<td class=xl1518243 width=64 style='width:48pt'></td>
<td class=xl1518243 width=64 style='width:48pt'></td>
<td class=xl1518243 width=64 style='width:48pt'></td>
<td class=xl1518243 width=64 style='width:48pt'></td>
<td class=xl1518243 width=64 style='width:48pt'></td>
<td class=xl1518243 width=64 style='width:48pt'></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl1518243 colspan=2 style='height:15.0pt'>Avg. Speed
(100% is fastest, others are slower)</td>
<td class=xl1518243></td>
<td class=xl6918243 align=right>79%</td>
<td class=xl1518243></td>
<td class=xl6918243 align=right>100%</td>
<td class=xl1518243></td>
<td class=xl7018243 align=right>96,30%</td>
<td class=xl1518243></td>
<td class=xl6918243 align=right>61%</td>
<td class=xl1518243></td>
<td class=xl7018243 align=right>60,40%</td>
<td class=xl1518243></td>
<td class=xl7018243 align=right>47,10%</td>
<td class=xl1518243></td>
<td class=xl7018243 align=right>31,10%</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl1518243 style='height:15.0pt'></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl6918243></td>
<td class=xl1518243></td>
<td class=xl6918243></td>
<td class=xl1518243></td>
<td class=xl7018243></td>
<td class=xl1518243></td>
<td class=xl6918243></td>
<td class=xl1518243></td>
<td class=xl7018243></td>
<td class=xl1518243></td>
<td class=xl7018243></td>
<td class=xl1518243></td>
<td class=xl7018243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl7218243 colspan=4 style='height:15.0pt'>Tests, grouped
by type. Percentage is the duration versus baseline (D2010), so lower % is
faster</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl6618243 style='height:15.0pt'>Test</td>
<td class=xl6618243>Type</td>
<td class=xl6618243>Ticks (D2010)</td>
<td class=xl6718243>D2010 %</td>
<td class=xl6618243>Ticks (ScaleMM2)</td>
<td class=xl6718243>SMM%</td>
<td class=xl6618243>Ticks (TCMalloc)</td>
<td class=xl6718243>TC%</td>
<td class=xl6618243>Ticks (MSVCRT)</td>
<td class=xl6718243>MS%</td>
<td class=xl6618243>Ticks (TopMM)</td>
<td class=xl6718243>Top%</td>
<td class=xl6618243>Ticks (JEmallocFF)</td>
<td class=xl6718243>JE%</td>
<td class=xl6618243>Ticks (HoardMM)</td>
<td class=xl6718243>Hoard%</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl1518243 style='height:15.0pt'>Fragmentation Test</td>
<td class=xl1518243>SingleThreadRealloc</td>
<td class=xl1518243 align=right>1803</td>
<td class=xl6518243 align=right>100</td>
<td class=xl1518243 align=right>2008</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>111,4</td>
<td class=xl1518243 align=right>1554</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#006100;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#C6EFCE;mso-pattern:black none'>86,2</td>
<td class=xl1518243 align=right>27230</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>1510,3</td>
<td class=xl1518243 align=right>27243</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>1511,0</td>
<td class=xl1518243 align=right>10904</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>604,8</td>
<td class=xl1518243 align=right>27606</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>1531,1</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl1518243 style='height:15.0pt'>ReallocMem benchmark</td>
<td class=xl1518243>SingleThreadRealloc</td>
<td class=xl1518243 align=right>3324</td>
<td class=xl6518243 align=right>100</td>
<td class=xl1518243 align=right>5066</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>152,4</td>
<td class=xl1518243 align=right>4228</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>127,2</td>
<td class=xl1518243 align=right>34549</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>1039,4</td>
<td class=xl1518243 align=right>13054</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>392,7</td>
<td class=xl1518243 align=right>8754</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>263,4</td>
<td class=xl1518243 align=right>107814</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>3243,5</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl1518243 style='height:15.0pt'>Small upsize benchmark</td>
<td class=xl1518243>SingleThreadRealloc</td>
<td class=xl1518243 align=right>670</td>
<td class=xl6518243 align=right>100</td>
<td class=xl1518243 align=right>757</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>113,0</td>
<td class=xl1518243 align=right>1467</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>219,0</td>
<td class=xl1518243 align=right>2652</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>395,8</td>
<td class=xl1518243 align=right>10733</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>1601,9</td>
<td class=xl1518243 align=right>2046</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>305,4</td>
<td class=xl1518243 align=right>3948</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>589,3</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl1518243 style='height:15.0pt'>Small downsize benchmark</td>
<td class=xl1518243>SingleThreadRealloc</td>
<td class=xl1518243 align=right>742</td>
<td class=xl6518243 align=right>100</td>
<td class=xl1518243 align=right>971</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>130,9</td>
<td class=xl1518243 align=right>1805</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>243,3</td>
<td class=xl1518243 align=right>4117</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>554,9</td>
<td class=xl1518243 align=right>10752</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>1449,1</td>
<td class=xl1518243 align=right>3187</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>429,5</td>
<td class=xl1518243 align=right>6471</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>872,1</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl1518243 style='height:15.0pt'>Array Upsize 1 thread</td>
<td class=xl1518243>SingleThreadRealloc</td>
<td class=xl1518243 align=right>13</td>
<td class=xl6518243 align=right>100</td>
<td class=xl1518243 align=right>14</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C6500;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFEB9C;mso-pattern:black none'>107,7</td>
<td class=xl1518243 align=right>23</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>176,9</td>
<td class=xl1518243 align=right>180</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>1384,6</td>
<td class=xl1518243 align=right>49</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>376,9</td>
<td class=xl1518243 align=right>21</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>161,5</td>
<td class=xl1518243 align=right>74634</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>574107,7</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl1518243 style='height:15.0pt'>Single-threaded
reallocate and use</td>
<td class=xl1518243>SingleThreadRealloc</td>
<td class=xl1518243 align=right>7327</td>
<td class=xl6518243 align=right>100</td>
<td class=xl1518243 align=right>7495</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C6500;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFEB9C;mso-pattern:black none'>102,3</td>
<td class=xl1518243 align=right>8024</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C6500;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFEB9C;mso-pattern:black none'>109,5</td>
<td class=xl1518243 align=right>10669</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>145,6</td>
<td class=xl1518243 align=right>11776</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>160,7</td>
<td class=xl1518243 align=right>9846</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>134,4</td>
<td class=xl1518243 align=right>25981</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>354,6</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl1518243 style='height:15.0pt'>Block downsize</td>
<td class=xl1518243>SingleThreadRealloc</td>
<td class=xl1518243 align=right>6297</td>
<td class=xl6518243 align=right>100</td>
<td class=xl1518243 align=right>9043</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>143,6</td>
<td class=xl1518243 align=right>10373</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>164,7</td>
<td class=xl1518243 align=right>1601715</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>25436,2</td>
<td class=xl1518243 align=right>3301587</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>52431,1</td>
<td class=xl1518243 align=right>24291</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>385,8</td>
<td class=xl1518243 align=right>571795</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>9080,4</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=46 style='mso-height-source:userset;height:34.5pt'>
<td height=46 class=xl6418243 colspan=2 style='height:34.5pt'>Single threaded
realloc (ticks, lower is better)</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=298 style='mso-height-source:userset;height:223.5pt'>
<td height=298 style='height:223.5pt' align=left valign=top><!--[if gte vml 1]><v:shapetype
id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t"
path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="Grafiek_x0020_5" o:spid="_x0000_s2059" type="#_x0000_t75"
style='position:absolute;margin-left:2.25pt;margin-top:3pt;width:508.5pt;
height:218.25pt;z-index:1;visibility:visible' o:gfxdata="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
AAYAfQEAAEgMAAAAAA==
">
<v:imagedata src="MMBench_all_bestanden/MMBench_all_18243_image001.png"
o:title=""/>
<o:lock v:ext="edit" aspectratio="f"/>
<x:ClientData ObjectType="Pict">
<x:SizeWithCells/>
<x:CF>Bitmap</x:CF>
<x:AutoPict/>
</x:ClientData>
</v:shape><![endif]--><![if !vml]><span style='mso-ignore:vglayout;
position:absolute;z-index:1;margin-left:3px;margin-top:4px;width:678px;
height:291px'><img width=678 height=291
src="MMBench_all_bestanden/MMBench_all_18243_image002.png" v:shapes="Grafiek_x0020_5"></span><![endif]><span
style='mso-ignore:vglayout2'>
<table cellpadding=0 cellspacing=0>
<tr>
<td height=298 class=xl1518243 width=244 style='height:223.5pt;width:183pt'></td>
</tr>
</table>
</span></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=22 style='mso-height-source:userset;height:16.5pt'>
<td height=22 class=xl7118243 style='height:16.5pt'>Note: Hoard is out of
range</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='mso-height-source:userset;height:15.0pt'>
<td height=20 class=xl1518243 style='height:15.0pt'></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl6618243 style='height:15.0pt'>Test</td>
<td class=xl6618243>Type</td>
<td class=xl6618243>Ticks (D2010)</td>
<td class=xl6718243>D2010 %</td>
<td class=xl6618243>Ticks (ScaleMM2)</td>
<td class=xl6718243>SMM%</td>
<td class=xl6618243>Ticks (TCMalloc)</td>
<td class=xl6718243>TC%</td>
<td class=xl6618243>Ticks (MSVCRT)</td>
<td class=xl6718243>MS%</td>
<td class=xl6618243>Ticks (TopMM)</td>
<td class=xl6718243>Top%</td>
<td class=xl6618243>Ticks (JEmallocFF)</td>
<td class=xl6718243>JE%</td>
<td class=xl6618243>Ticks (HoardMM)</td>
<td class=xl6718243>Hoard%</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl1518243 style='height:15.0pt'>Block size spread
benchmark</td>
<td class=xl1518243>SingleThreadAllocAndFree</td>
<td class=xl1518243 align=right>628</td>
<td class=xl6518243 align=right>100</td>
<td class=xl1518243 align=right>1059</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>168,6</td>
<td class=xl1518243 align=right>1210</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>192,7</td>
<td class=xl1518243 align=right>1935</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>308,1</td>
<td class=xl1518243 align=right>8822</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>1404,8</td>
<td class=xl1518243 align=right>1806</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>287,6</td>
<td class=xl1518243 align=right>2505</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>398,9</td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
<td class=xl1518243></td>
</tr>
<tr height=20 style='height:15.0pt'>
<td height=20 class=xl1518243 style='height:15.0pt'>Raw Performance 1 thread</td>
<td class=xl1518243>SingleThreadAllocAndFree</td>
<td class=xl1518243 align=right>3361</td>
<td class=xl6518243 align=right>100</td>
<td class=xl1518243 align=right>1939</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#006100;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#C6EFCE;mso-pattern:black none'>57,7</td>
<td class=xl1518243 align=right>2347</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#006100;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#C6EFCE;mso-pattern:black none'>69,8</td>
<td class=xl1518243 align=right>5221</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>155,3</td>
<td class=xl1518243 align=right>6930</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>206,2</td>
<td class=xl1518243 align=right>6332</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>188,4</td>
<td class=xl1518243 align=right>106362</td>
<td class=xl6318243 align=right style='font-size:11.0pt;color:#9C0006;
font-weight:400;text-decoration:none;text-underline-style:none;text-line-through:
none;font-family:Calibri;background:#FFC7CE;mso-pattern:black none'>3164,6</td>
<td class=xl1518243></td>
<td class=xl1518243></td>