forked from rurban/smhasher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.speed
11975 lines (10406 loc) · 596 KB
/
log.speed
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
--- Testing donothing32 "Do-Nothing function (measure call overhead)" SKIP
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 3640.889 bytes/cycle - 10416666.67 MiB/sec @ 3 ghz
Alignment 6 - 3640.889 bytes/cycle - 10416666.67 MiB/sec @ 3 ghz
Alignment 5 - 3677.820 bytes/cycle - 10522328.55 MiB/sec @ 3 ghz
Alignment 4 - 4009.296 bytes/cycle - 11470688.16 MiB/sec @ 3 ghz
Alignment 3 - 4029.341 bytes/cycle - 11528035.94 MiB/sec @ 3 ghz
Alignment 2 - 4045.732 bytes/cycle - 11574932.05 MiB/sec @ 3 ghz
Alignment 1 - 4058.518 bytes/cycle - 11611513.91 MiB/sec @ 3 ghz
Alignment 0 - 4073.665 bytes/cycle - 11654848.54 MiB/sec @ 3 ghz
Average - 3897.019 bytes/cycle - 11149460.06 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 4.00 cycles/hash
Small key speed test - 2-byte keys - 4.00 cycles/hash
Small key speed test - 3-byte keys - 4.00 cycles/hash
Small key speed test - 4-byte keys - 4.00 cycles/hash
Small key speed test - 5-byte keys - 4.00 cycles/hash
Small key speed test - 6-byte keys - 4.00 cycles/hash
Small key speed test - 7-byte keys - 4.00 cycles/hash
Small key speed test - 8-byte keys - 4.00 cycles/hash
Small key speed test - 9-byte keys - 4.00 cycles/hash
Small key speed test - 10-byte keys - 4.00 cycles/hash
Small key speed test - 11-byte keys - 4.00 cycles/hash
Small key speed test - 12-byte keys - 4.00 cycles/hash
Small key speed test - 13-byte keys - 4.00 cycles/hash
Small key speed test - 14-byte keys - 4.00 cycles/hash
Small key speed test - 15-byte keys - 4.00 cycles/hash
Small key speed test - 16-byte keys - 4.00 cycles/hash
Small key speed test - 17-byte keys - 4.00 cycles/hash
Small key speed test - 18-byte keys - 4.00 cycles/hash
Small key speed test - 19-byte keys - 4.00 cycles/hash
Small key speed test - 20-byte keys - 4.00 cycles/hash
Small key speed test - 21-byte keys - 4.00 cycles/hash
Small key speed test - 22-byte keys - 4.00 cycles/hash
Small key speed test - 23-byte keys - 4.00 cycles/hash
Small key speed test - 24-byte keys - 4.00 cycles/hash
Small key speed test - 25-byte keys - 4.00 cycles/hash
Small key speed test - 26-byte keys - 4.00 cycles/hash
Small key speed test - 27-byte keys - 4.00 cycles/hash
Small key speed test - 28-byte keys - 4.00 cycles/hash
Small key speed test - 29-byte keys - 4.00 cycles/hash
Small key speed test - 30-byte keys - 4.00 cycles/hash
Small key speed test - 31-byte keys - 4.00 cycles/hash
Average 4.000 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
Skipping Hashmap test; it is designed for true hashes
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 3.190819 seconds
--- Testing donothing64 "Do-Nothing function (measure call overhead)" SKIP
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 4126.754 bytes/cycle - 11806738.60 MiB/sec @ 3 ghz
Alignment 6 - 4130.664 bytes/cycle - 11817923.46 MiB/sec @ 3 ghz
Alignment 5 - 4102.603 bytes/cycle - 11737642.11 MiB/sec @ 3 ghz
Alignment 4 - 4106.616 bytes/cycle - 11749122.15 MiB/sec @ 3 ghz
Alignment 3 - 4125.193 bytes/cycle - 11802270.58 MiB/sec @ 3 ghz
Alignment 2 - 4125.606 bytes/cycle - 11803454.36 MiB/sec @ 3 ghz
Alignment 1 - 4109.464 bytes/cycle - 11757270.27 MiB/sec @ 3 ghz
Alignment 0 - 4133.833 bytes/cycle - 11826989.84 MiB/sec @ 3 ghz
Average - 4120.092 bytes/cycle - 11787676.42 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 4.00 cycles/hash
Small key speed test - 2-byte keys - 4.00 cycles/hash
Small key speed test - 3-byte keys - 4.00 cycles/hash
Small key speed test - 4-byte keys - 4.00 cycles/hash
Small key speed test - 5-byte keys - 4.00 cycles/hash
Small key speed test - 6-byte keys - 4.00 cycles/hash
Small key speed test - 7-byte keys - 4.00 cycles/hash
Small key speed test - 8-byte keys - 4.00 cycles/hash
Small key speed test - 9-byte keys - 4.00 cycles/hash
Small key speed test - 10-byte keys - 4.00 cycles/hash
Small key speed test - 11-byte keys - 4.00 cycles/hash
Small key speed test - 12-byte keys - 4.00 cycles/hash
Small key speed test - 13-byte keys - 4.00 cycles/hash
Small key speed test - 14-byte keys - 4.00 cycles/hash
Small key speed test - 15-byte keys - 4.00 cycles/hash
Small key speed test - 16-byte keys - 4.00 cycles/hash
Small key speed test - 17-byte keys - 4.00 cycles/hash
Small key speed test - 18-byte keys - 4.00 cycles/hash
Small key speed test - 19-byte keys - 4.00 cycles/hash
Small key speed test - 20-byte keys - 4.00 cycles/hash
Small key speed test - 21-byte keys - 4.00 cycles/hash
Small key speed test - 22-byte keys - 4.00 cycles/hash
Small key speed test - 23-byte keys - 4.00 cycles/hash
Small key speed test - 24-byte keys - 4.00 cycles/hash
Small key speed test - 25-byte keys - 4.00 cycles/hash
Small key speed test - 26-byte keys - 4.00 cycles/hash
Small key speed test - 27-byte keys - 4.00 cycles/hash
Small key speed test - 28-byte keys - 4.00 cycles/hash
Small key speed test - 29-byte keys - 4.00 cycles/hash
Small key speed test - 30-byte keys - 4.00 cycles/hash
Small key speed test - 31-byte keys - 4.00 cycles/hash
Average 4.000 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
Skipping Hashmap test; it is designed for true hashes
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 3.027181 seconds
--- Testing donothing128 "Do-Nothing function (measure call overhead)" SKIP
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 4107.388 bytes/cycle - 11751332.71 MiB/sec @ 3 ghz
Alignment 6 - 4110.415 bytes/cycle - 11759992.46 MiB/sec @ 3 ghz
Alignment 5 - 4100.020 bytes/cycle - 11730251.21 MiB/sec @ 3 ghz
Alignment 4 - 4090.963 bytes/cycle - 11704339.40 MiB/sec @ 3 ghz
Alignment 3 - 4107.318 bytes/cycle - 11751130.37 MiB/sec @ 3 ghz
Alignment 2 - 4097.710 bytes/cycle - 11723641.37 MiB/sec @ 3 ghz
Alignment 1 - 4125.423 bytes/cycle - 11802930.06 MiB/sec @ 3 ghz
Alignment 0 - 4102.333 bytes/cycle - 11736868.50 MiB/sec @ 3 ghz
Average - 4105.196 bytes/cycle - 11745060.76 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 4.00 cycles/hash
Small key speed test - 2-byte keys - 4.00 cycles/hash
Small key speed test - 3-byte keys - 4.00 cycles/hash
Small key speed test - 4-byte keys - 4.00 cycles/hash
Small key speed test - 5-byte keys - 4.00 cycles/hash
Small key speed test - 6-byte keys - 4.00 cycles/hash
Small key speed test - 7-byte keys - 4.00 cycles/hash
Small key speed test - 8-byte keys - 4.00 cycles/hash
Small key speed test - 9-byte keys - 4.00 cycles/hash
Small key speed test - 10-byte keys - 4.00 cycles/hash
Small key speed test - 11-byte keys - 4.00 cycles/hash
Small key speed test - 12-byte keys - 4.00 cycles/hash
Small key speed test - 13-byte keys - 4.00 cycles/hash
Small key speed test - 14-byte keys - 4.00 cycles/hash
Small key speed test - 15-byte keys - 4.00 cycles/hash
Small key speed test - 16-byte keys - 4.00 cycles/hash
Small key speed test - 17-byte keys - 4.00 cycles/hash
Small key speed test - 18-byte keys - 4.00 cycles/hash
Small key speed test - 19-byte keys - 4.00 cycles/hash
Small key speed test - 20-byte keys - 4.00 cycles/hash
Small key speed test - 21-byte keys - 4.00 cycles/hash
Small key speed test - 22-byte keys - 4.00 cycles/hash
Small key speed test - 23-byte keys - 4.00 cycles/hash
Small key speed test - 24-byte keys - 4.00 cycles/hash
Small key speed test - 25-byte keys - 4.00 cycles/hash
Small key speed test - 26-byte keys - 4.53 cycles/hash
Small key speed test - 27-byte keys - 5.29 cycles/hash
Small key speed test - 28-byte keys - 4.00 cycles/hash
Small key speed test - 29-byte keys - 4.00 cycles/hash
Small key speed test - 30-byte keys - 4.00 cycles/hash
Small key speed test - 31-byte keys - 4.00 cycles/hash
Average 4.059 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
Skipping Hashmap test; it is designed for true hashes
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 3.015108 seconds
--- Testing NOP_OAAT_read64 "Noop function (measure call + OAAT reading overhead)" SKIP
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 3984.821 bytes/cycle - 11400663.87 MiB/sec @ 3 ghz
Alignment 6 - 3958.781 bytes/cycle - 11326163.25 MiB/sec @ 3 ghz
Alignment 5 - 3955.991 bytes/cycle - 11318181.82 MiB/sec @ 3 ghz
Alignment 4 - 3979.005 bytes/cycle - 11384023.60 MiB/sec @ 3 ghz
Alignment 3 - 3980.474 bytes/cycle - 11388228.48 MiB/sec @ 3 ghz
Alignment 2 - 3990.088 bytes/cycle - 11415734.46 MiB/sec @ 3 ghz
Alignment 1 - 3977.811 bytes/cycle - 11380608.39 MiB/sec @ 3 ghz
Alignment 0 - 3973.812 bytes/cycle - 11369167.12 MiB/sec @ 3 ghz
Average - 3975.098 bytes/cycle - 11372846.37 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 14.00 cycles/hash
Small key speed test - 2-byte keys - 14.00 cycles/hash
Small key speed test - 3-byte keys - 14.00 cycles/hash
Small key speed test - 4-byte keys - 14.00 cycles/hash
Small key speed test - 5-byte keys - 14.00 cycles/hash
Small key speed test - 6-byte keys - 14.00 cycles/hash
Small key speed test - 7-byte keys - 14.00 cycles/hash
Small key speed test - 8-byte keys - 14.00 cycles/hash
Small key speed test - 9-byte keys - 14.00 cycles/hash
Small key speed test - 10-byte keys - 14.00 cycles/hash
Small key speed test - 11-byte keys - 14.00 cycles/hash
Small key speed test - 12-byte keys - 14.00 cycles/hash
Small key speed test - 13-byte keys - 14.00 cycles/hash
Small key speed test - 14-byte keys - 14.00 cycles/hash
Small key speed test - 15-byte keys - 14.00 cycles/hash
Small key speed test - 16-byte keys - 14.00 cycles/hash
Small key speed test - 17-byte keys - 14.00 cycles/hash
Small key speed test - 18-byte keys - 14.00 cycles/hash
Small key speed test - 19-byte keys - 14.00 cycles/hash
Small key speed test - 20-byte keys - 14.00 cycles/hash
Small key speed test - 21-byte keys - 14.00 cycles/hash
Small key speed test - 22-byte keys - 14.00 cycles/hash
Small key speed test - 23-byte keys - 14.00 cycles/hash
Small key speed test - 24-byte keys - 14.00 cycles/hash
Small key speed test - 25-byte keys - 14.00 cycles/hash
Small key speed test - 26-byte keys - 14.00 cycles/hash
Small key speed test - 27-byte keys - 14.00 cycles/hash
Small key speed test - 28-byte keys - 14.00 cycles/hash
Small key speed test - 29-byte keys - 14.00 cycles/hash
Small key speed test - 30-byte keys - 14.00 cycles/hash
Small key speed test - 31-byte keys - 14.00 cycles/hash
Average 14.000 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
Skipping Hashmap test; it is designed for true hashes
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 4.705792 seconds
--- Testing BadHash "very simple XOR shift" SKIP
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 0.269 bytes/cycle - 770.68 MiB/sec @ 3 ghz
Alignment 6 - 0.270 bytes/cycle - 771.21 MiB/sec @ 3 ghz
Alignment 5 - 0.269 bytes/cycle - 770.36 MiB/sec @ 3 ghz
Alignment 4 - 0.269 bytes/cycle - 771.04 MiB/sec @ 3 ghz
Alignment 3 - 0.270 bytes/cycle - 771.79 MiB/sec @ 3 ghz
Alignment 2 - 0.270 bytes/cycle - 771.34 MiB/sec @ 3 ghz
Alignment 1 - 0.268 bytes/cycle - 767.01 MiB/sec @ 3 ghz
Alignment 0 - 0.268 bytes/cycle - 766.06 MiB/sec @ 3 ghz
Average - 0.269 bytes/cycle - 769.94 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 15.00 cycles/hash
Small key speed test - 2-byte keys - 19.00 cycles/hash
Small key speed test - 3-byte keys - 23.00 cycles/hash
Small key speed test - 4-byte keys - 27.00 cycles/hash
Small key speed test - 5-byte keys - 31.00 cycles/hash
Small key speed test - 6-byte keys - 34.89 cycles/hash
Small key speed test - 7-byte keys - 39.00 cycles/hash
Small key speed test - 8-byte keys - 42.31 cycles/hash
Small key speed test - 9-byte keys - 46.00 cycles/hash
Small key speed test - 10-byte keys - 50.00 cycles/hash
Small key speed test - 11-byte keys - 54.16 cycles/hash
Small key speed test - 12-byte keys - 57.97 cycles/hash
Small key speed test - 13-byte keys - 62.20 cycles/hash
Small key speed test - 14-byte keys - 66.00 cycles/hash
Small key speed test - 15-byte keys - 70.00 cycles/hash
Small key speed test - 16-byte keys - 73.70 cycles/hash
Small key speed test - 17-byte keys - 77.61 cycles/hash
Small key speed test - 18-byte keys - 82.48 cycles/hash
Small key speed test - 19-byte keys - 85.47 cycles/hash
Small key speed test - 20-byte keys - 89.48 cycles/hash
Small key speed test - 21-byte keys - 93.00 cycles/hash
Small key speed test - 22-byte keys - 96.99 cycles/hash
Small key speed test - 23-byte keys - 101.68 cycles/hash
Small key speed test - 24-byte keys - 105.44 cycles/hash
Small key speed test - 25-byte keys - 109.04 cycles/hash
Small key speed test - 26-byte keys - 112.76 cycles/hash
Small key speed test - 27-byte keys - 116.78 cycles/hash
Small key speed test - 28-byte keys - 121.90 cycles/hash
Small key speed test - 29-byte keys - 125.95 cycles/hash
Small key speed test - 30-byte keys - 129.83 cycles/hash
Small key speed test - 31-byte keys - 133.46 cycles/hash
Average 73.971 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
Skipping Hashmap test; it is designed for true hashes
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 22.990327 seconds
--- Testing sumhash "sum all bytes" SKIP
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 3.802 bytes/cycle - 10877.96 MiB/sec @ 3 ghz
Alignment 6 - 3.801 bytes/cycle - 10876.03 MiB/sec @ 3 ghz
Alignment 5 - 3.802 bytes/cycle - 10878.09 MiB/sec @ 3 ghz
Alignment 4 - 3.783 bytes/cycle - 10822.43 MiB/sec @ 3 ghz
Alignment 3 - 3.801 bytes/cycle - 10874.36 MiB/sec @ 3 ghz
Alignment 2 - 3.762 bytes/cycle - 10763.86 MiB/sec @ 3 ghz
Alignment 1 - 3.759 bytes/cycle - 10753.55 MiB/sec @ 3 ghz
Alignment 0 - 3.408 bytes/cycle - 9750.31 MiB/sec @ 3 ghz
Average - 3.740 bytes/cycle - 10699.57 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 14.00 cycles/hash
Small key speed test - 2-byte keys - 15.00 cycles/hash
Small key speed test - 3-byte keys - 16.00 cycles/hash
Small key speed test - 4-byte keys - 17.00 cycles/hash
Small key speed test - 5-byte keys - 18.49 cycles/hash
Small key speed test - 6-byte keys - 19.00 cycles/hash
Small key speed test - 7-byte keys - 19.00 cycles/hash
Small key speed test - 8-byte keys - 21.00 cycles/hash
Small key speed test - 9-byte keys - 21.99 cycles/hash
Small key speed test - 10-byte keys - 23.00 cycles/hash
Small key speed test - 11-byte keys - 23.75 cycles/hash
Small key speed test - 12-byte keys - 24.48 cycles/hash
Small key speed test - 13-byte keys - 25.88 cycles/hash
Small key speed test - 14-byte keys - 26.97 cycles/hash
Small key speed test - 15-byte keys - 27.00 cycles/hash
Small key speed test - 16-byte keys - 31.46 cycles/hash
Small key speed test - 17-byte keys - 30.97 cycles/hash
Small key speed test - 18-byte keys - 31.97 cycles/hash
Small key speed test - 19-byte keys - 33.00 cycles/hash
Small key speed test - 20-byte keys - 33.97 cycles/hash
Small key speed test - 21-byte keys - 34.61 cycles/hash
Small key speed test - 22-byte keys - 36.50 cycles/hash
Small key speed test - 23-byte keys - 37.17 cycles/hash
Small key speed test - 24-byte keys - 37.93 cycles/hash
Small key speed test - 25-byte keys - 41.29 cycles/hash
Small key speed test - 26-byte keys - 39.00 cycles/hash
Small key speed test - 27-byte keys - 41.00 cycles/hash
Small key speed test - 28-byte keys - 43.27 cycles/hash
Small key speed test - 29-byte keys - 42.00 cycles/hash
Small key speed test - 30-byte keys - 43.89 cycles/hash
Small key speed test - 31-byte keys - 44.87 cycles/hash
Average 29.531 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
Skipping Hashmap test; it is designed for true hashes
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 8.085387 seconds
--- Testing sumhash32 "sum all 32bit words" SKIP
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 14.683 bytes/cycle - 42007.70 MiB/sec @ 3 ghz
Alignment 6 - 14.830 bytes/cycle - 42427.82 MiB/sec @ 3 ghz
Alignment 5 - 14.809 bytes/cycle - 42369.13 MiB/sec @ 3 ghz
Alignment 4 - 14.892 bytes/cycle - 42605.43 MiB/sec @ 3 ghz
Alignment 3 - 14.760 bytes/cycle - 42229.60 MiB/sec @ 3 ghz
Alignment 2 - 14.745 bytes/cycle - 42184.57 MiB/sec @ 3 ghz
Alignment 1 - 14.756 bytes/cycle - 42216.33 MiB/sec @ 3 ghz
Alignment 0 - 16.421 bytes/cycle - 46981.76 MiB/sec @ 3 ghz
Average - 14.987 bytes/cycle - 42877.79 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 17.00 cycles/hash
Small key speed test - 2-byte keys - 18.99 cycles/hash
Small key speed test - 3-byte keys - 19.00 cycles/hash
Small key speed test - 4-byte keys - 14.00 cycles/hash
Small key speed test - 5-byte keys - 19.00 cycles/hash
Small key speed test - 6-byte keys - 20.00 cycles/hash
Small key speed test - 7-byte keys - 21.00 cycles/hash
Small key speed test - 8-byte keys - 15.00 cycles/hash
Small key speed test - 9-byte keys - 20.00 cycles/hash
Small key speed test - 10-byte keys - 21.00 cycles/hash
Small key speed test - 11-byte keys - 22.00 cycles/hash
Small key speed test - 12-byte keys - 16.00 cycles/hash
Small key speed test - 13-byte keys - 20.00 cycles/hash
Small key speed test - 14-byte keys - 21.00 cycles/hash
Small key speed test - 15-byte keys - 22.00 cycles/hash
Small key speed test - 16-byte keys - 24.00 cycles/hash
Small key speed test - 17-byte keys - 25.00 cycles/hash
Small key speed test - 18-byte keys - 26.00 cycles/hash
Small key speed test - 19-byte keys - 27.00 cycles/hash
Small key speed test - 20-byte keys - 25.00 cycles/hash
Small key speed test - 21-byte keys - 26.20 cycles/hash
Small key speed test - 22-byte keys - 27.00 cycles/hash
Small key speed test - 23-byte keys - 28.00 cycles/hash
Small key speed test - 24-byte keys - 25.90 cycles/hash
Small key speed test - 25-byte keys - 26.96 cycles/hash
Small key speed test - 26-byte keys - 27.55 cycles/hash
Small key speed test - 27-byte keys - 28.27 cycles/hash
Small key speed test - 28-byte keys - 26.98 cycles/hash
Small key speed test - 29-byte keys - 27.94 cycles/hash
Small key speed test - 30-byte keys - 28.97 cycles/hash
Small key speed test - 31-byte keys - 29.94 cycles/hash
Average 23.120 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
Skipping Hashmap test; it is designed for true hashes
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 6.456471 seconds
--- Testing multiply_shift "Dietzfelbinger Multiply-shift on strings" POOR
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 2.799 bytes/cycle - 8008.12 MiB/sec @ 3 ghz
Alignment 6 - 2.805 bytes/cycle - 8024.53 MiB/sec @ 3 ghz
Alignment 5 - 2.806 bytes/cycle - 8029.00 MiB/sec @ 3 ghz
Alignment 4 - 2.810 bytes/cycle - 8038.72 MiB/sec @ 3 ghz
Alignment 3 - 2.807 bytes/cycle - 8030.78 MiB/sec @ 3 ghz
Alignment 2 - 2.806 bytes/cycle - 8026.81 MiB/sec @ 3 ghz
Alignment 1 - 2.802 bytes/cycle - 8016.68 MiB/sec @ 3 ghz
Alignment 0 - 2.810 bytes/cycle - 8039.50 MiB/sec @ 3 ghz
Average - 2.806 bytes/cycle - 8026.77 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 21.00 cycles/hash
Small key speed test - 2-byte keys - 21.00 cycles/hash
Small key speed test - 3-byte keys - 23.00 cycles/hash
Small key speed test - 4-byte keys - 20.43 cycles/hash
Small key speed test - 5-byte keys - 23.00 cycles/hash
Small key speed test - 6-byte keys - 23.77 cycles/hash
Small key speed test - 7-byte keys - 24.82 cycles/hash
Small key speed test - 8-byte keys - 21.00 cycles/hash
Small key speed test - 9-byte keys - 24.00 cycles/hash
Small key speed test - 10-byte keys - 24.61 cycles/hash
Small key speed test - 11-byte keys - 25.00 cycles/hash
Small key speed test - 12-byte keys - 24.00 cycles/hash
Small key speed test - 13-byte keys - 25.68 cycles/hash
Small key speed test - 14-byte keys - 25.00 cycles/hash
Small key speed test - 15-byte keys - 26.00 cycles/hash
Small key speed test - 16-byte keys - 23.81 cycles/hash
Small key speed test - 17-byte keys - 27.00 cycles/hash
Small key speed test - 18-byte keys - 27.00 cycles/hash
Small key speed test - 19-byte keys - 27.00 cycles/hash
Small key speed test - 20-byte keys - 27.00 cycles/hash
Small key speed test - 21-byte keys - 27.00 cycles/hash
Small key speed test - 22-byte keys - 27.00 cycles/hash
Small key speed test - 23-byte keys - 29.00 cycles/hash
Small key speed test - 24-byte keys - 27.00 cycles/hash
Small key speed test - 25-byte keys - 31.00 cycles/hash
Small key speed test - 26-byte keys - 30.00 cycles/hash
Small key speed test - 27-byte keys - 31.00 cycles/hash
Small key speed test - 28-byte keys - 30.00 cycles/hash
Small key speed test - 29-byte keys - 30.41 cycles/hash
Small key speed test - 30-byte keys - 30.00 cycles/hash
Small key speed test - 31-byte keys - 31.11 cycles/hash
Average 26.053 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 535.502 cycles/op (104334 inserts, 1% deletions)
Running std HashMapTest: 371.921 cycles/op (11.0 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 374.528 cycles/op (104334 inserts, 1% deletions)
Running fast HashMapTest: 226.799 cycles/op (7.8 stdv) ....... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 8.510203 seconds
--- Testing pair_multiply_shift "Pair-multiply-shift" POOR
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 1.993 bytes/cycle - 5701.58 MiB/sec @ 3 ghz
Alignment 6 - 1.999 bytes/cycle - 5718.63 MiB/sec @ 3 ghz
Alignment 5 - 1.995 bytes/cycle - 5708.73 MiB/sec @ 3 ghz
Alignment 4 - 1.990 bytes/cycle - 5693.76 MiB/sec @ 3 ghz
Alignment 3 - 1.999 bytes/cycle - 5720.02 MiB/sec @ 3 ghz
Alignment 2 - 1.999 bytes/cycle - 5718.31 MiB/sec @ 3 ghz
Alignment 1 - 1.996 bytes/cycle - 5710.54 MiB/sec @ 3 ghz
Alignment 0 - 1.992 bytes/cycle - 5697.75 MiB/sec @ 3 ghz
Average - 1.995 bytes/cycle - 5708.67 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 27.95 cycles/hash
Small key speed test - 2-byte keys - 28.00 cycles/hash
Small key speed test - 3-byte keys - 35.25 cycles/hash
Small key speed test - 4-byte keys - 27.00 cycles/hash
Small key speed test - 5-byte keys - 35.67 cycles/hash
Small key speed test - 6-byte keys - 35.51 cycles/hash
Small key speed test - 7-byte keys - 43.00 cycles/hash
Small key speed test - 8-byte keys - 26.82 cycles/hash
Small key speed test - 9-byte keys - 36.00 cycles/hash
Small key speed test - 10-byte keys - 35.00 cycles/hash
Small key speed test - 11-byte keys - 42.92 cycles/hash
Small key speed test - 12-byte keys - 35.00 cycles/hash
Small key speed test - 13-byte keys - 43.50 cycles/hash
Small key speed test - 14-byte keys - 43.22 cycles/hash
Small key speed test - 15-byte keys - 50.70 cycles/hash
Small key speed test - 16-byte keys - 30.00 cycles/hash
Small key speed test - 17-byte keys - 36.00 cycles/hash
Small key speed test - 18-byte keys - 36.14 cycles/hash
Small key speed test - 19-byte keys - 43.25 cycles/hash
Small key speed test - 20-byte keys - 35.00 cycles/hash
Small key speed test - 21-byte keys - 43.00 cycles/hash
Small key speed test - 22-byte keys - 44.00 cycles/hash
Small key speed test - 23-byte keys - 52.00 cycles/hash
Small key speed test - 24-byte keys - 34.92 cycles/hash
Small key speed test - 25-byte keys - 43.00 cycles/hash
Small key speed test - 26-byte keys - 43.00 cycles/hash
Small key speed test - 27-byte keys - 51.00 cycles/hash
Small key speed test - 28-byte keys - 42.95 cycles/hash
Small key speed test - 29-byte keys - 51.88 cycles/hash
Small key speed test - 30-byte keys - 51.38 cycles/hash
Small key speed test - 31-byte keys - 58.93 cycles/hash
Average 40.063 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 524.970 cycles/op (104334 inserts, 1% deletions)
Running std HashMapTest: 383.831 cycles/op (18.4 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 275.269 cycles/op (104334 inserts, 1% deletions)
Running fast HashMapTest: 225.311 cycles/op (8.6 stdv) ....... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 11.180885 seconds
--- Testing crc32 "CRC-32 soft" POOR
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 0.133 bytes/cycle - 379.79 MiB/sec @ 3 ghz
Alignment 6 - 0.135 bytes/cycle - 384.81 MiB/sec @ 3 ghz
Alignment 5 - 0.134 bytes/cycle - 384.62 MiB/sec @ 3 ghz
Alignment 4 - 0.133 bytes/cycle - 379.27 MiB/sec @ 3 ghz
Alignment 3 - 0.134 bytes/cycle - 382.18 MiB/sec @ 3 ghz
Alignment 2 - 0.135 bytes/cycle - 384.81 MiB/sec @ 3 ghz
Alignment 1 - 0.134 bytes/cycle - 384.68 MiB/sec @ 3 ghz
Alignment 0 - 0.134 bytes/cycle - 384.79 MiB/sec @ 3 ghz
Average - 0.134 bytes/cycle - 383.12 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 21.98 cycles/hash
Small key speed test - 2-byte keys - 29.00 cycles/hash
Small key speed test - 3-byte keys - 36.31 cycles/hash
Small key speed test - 4-byte keys - 44.00 cycles/hash
Small key speed test - 5-byte keys - 51.74 cycles/hash
Small key speed test - 6-byte keys - 58.15 cycles/hash
Small key speed test - 7-byte keys - 66.00 cycles/hash
Small key speed test - 8-byte keys - 74.21 cycles/hash
Small key speed test - 9-byte keys - 82.14 cycles/hash
Small key speed test - 10-byte keys - 89.94 cycles/hash
Small key speed test - 11-byte keys - 96.95 cycles/hash
Small key speed test - 12-byte keys - 104.44 cycles/hash
Small key speed test - 13-byte keys - 111.84 cycles/hash
Small key speed test - 14-byte keys - 118.95 cycles/hash
Small key speed test - 15-byte keys - 126.91 cycles/hash
Small key speed test - 16-byte keys - 134.06 cycles/hash
Small key speed test - 17-byte keys - 142.11 cycles/hash
Small key speed test - 18-byte keys - 148.97 cycles/hash
Small key speed test - 19-byte keys - 157.88 cycles/hash
Small key speed test - 20-byte keys - 164.05 cycles/hash
Small key speed test - 21-byte keys - 171.81 cycles/hash
Small key speed test - 22-byte keys - 178.30 cycles/hash
Small key speed test - 23-byte keys - 185.90 cycles/hash
Small key speed test - 24-byte keys - 193.70 cycles/hash
Small key speed test - 25-byte keys - 201.85 cycles/hash
Small key speed test - 26-byte keys - 211.63 cycles/hash
Small key speed test - 27-byte keys - 216.50 cycles/hash
Small key speed test - 28-byte keys - 223.16 cycles/hash
Small key speed test - 29-byte keys - 231.89 cycles/hash
Small key speed test - 30-byte keys - 238.77 cycles/hash
Small key speed test - 31-byte keys - 247.31 cycles/hash
Average 134.208 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 463.971 cycles/op (104334 inserts, 1% deletions)
Running std HashMapTest: 391.703 cycles/op (4.2 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 330.925 cycles/op (104334 inserts, 1% deletions)
Running fast HashMapTest: 257.505 cycles/op (11.1 stdv) ....... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 41.184329 seconds
--- Testing md5-128 "MD5" GOOD
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 0.123 bytes/cycle - 351.08 MiB/sec @ 3 ghz
Alignment 6 - 0.123 bytes/cycle - 351.02 MiB/sec @ 3 ghz
Alignment 5 - 0.122 bytes/cycle - 350.30 MiB/sec @ 3 ghz
Alignment 4 - 0.123 bytes/cycle - 351.10 MiB/sec @ 3 ghz
Alignment 3 - 0.123 bytes/cycle - 350.97 MiB/sec @ 3 ghz
Alignment 2 - 0.123 bytes/cycle - 351.18 MiB/sec @ 3 ghz
Alignment 1 - 0.122 bytes/cycle - 350.27 MiB/sec @ 3 ghz
Alignment 0 - 0.123 bytes/cycle - 351.17 MiB/sec @ 3 ghz
Average - 0.123 bytes/cycle - 350.89 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 669.48 cycles/hash
Small key speed test - 2-byte keys - 665.24 cycles/hash
Small key speed test - 3-byte keys - 665.71 cycles/hash
Small key speed test - 4-byte keys - 671.86 cycles/hash
Small key speed test - 5-byte keys - 671.49 cycles/hash
Small key speed test - 6-byte keys - 670.61 cycles/hash
Small key speed test - 7-byte keys - 669.58 cycles/hash
Small key speed test - 8-byte keys - 687.18 cycles/hash
Small key speed test - 9-byte keys - 686.77 cycles/hash
Small key speed test - 10-byte keys - 686.83 cycles/hash
Small key speed test - 11-byte keys - 686.92 cycles/hash
Small key speed test - 12-byte keys - 688.00 cycles/hash
Small key speed test - 13-byte keys - 687.95 cycles/hash
Small key speed test - 14-byte keys - 687.89 cycles/hash
Small key speed test - 15-byte keys - 687.17 cycles/hash
Small key speed test - 16-byte keys - 685.65 cycles/hash
Small key speed test - 17-byte keys - 685.67 cycles/hash
Small key speed test - 18-byte keys - 685.51 cycles/hash
Small key speed test - 19-byte keys - 686.07 cycles/hash
Small key speed test - 20-byte keys - 686.75 cycles/hash
Small key speed test - 21-byte keys - 686.75 cycles/hash
Small key speed test - 22-byte keys - 686.45 cycles/hash
Small key speed test - 23-byte keys - 685.73 cycles/hash
Small key speed test - 24-byte keys - 685.82 cycles/hash
Small key speed test - 25-byte keys - 686.05 cycles/hash
Small key speed test - 26-byte keys - 685.58 cycles/hash
Small key speed test - 27-byte keys - 685.71 cycles/hash
Small key speed test - 28-byte keys - 685.86 cycles/hash
Small key speed test - 29-byte keys - 686.45 cycles/hash
Small key speed test - 30-byte keys - 675.40 cycles/hash
Small key speed test - 31-byte keys - 676.08 cycles/hash
Average 681.878 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 1179.248 cycles/op (104334 inserts, 1% deletions)
Running std HashMapTest: 1037.452 cycles/op (20.3 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 964.421 cycles/op (104334 inserts, 1% deletions)
Running fast HashMapTest: 894.031 cycles/op (12.7 stdv) ....... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 136.936532 seconds
--- Testing md5_64 "MD5, bits 32-95" GOOD
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 0.123 bytes/cycle - 350.95 MiB/sec @ 3 ghz
Alignment 6 - 0.123 bytes/cycle - 350.91 MiB/sec @ 3 ghz
Alignment 5 - 0.123 bytes/cycle - 351.33 MiB/sec @ 3 ghz
Alignment 4 - 0.122 bytes/cycle - 350.22 MiB/sec @ 3 ghz
Alignment 3 - 0.123 bytes/cycle - 351.24 MiB/sec @ 3 ghz
Alignment 2 - 0.123 bytes/cycle - 351.25 MiB/sec @ 3 ghz
Alignment 1 - 0.123 bytes/cycle - 350.95 MiB/sec @ 3 ghz
Alignment 0 - 0.123 bytes/cycle - 351.21 MiB/sec @ 3 ghz
Average - 0.123 bytes/cycle - 351.01 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 636.90 cycles/hash
Small key speed test - 2-byte keys - 641.83 cycles/hash
Small key speed test - 3-byte keys - 641.69 cycles/hash
Small key speed test - 4-byte keys - 641.65 cycles/hash
Small key speed test - 5-byte keys - 641.66 cycles/hash
Small key speed test - 6-byte keys - 641.90 cycles/hash
Small key speed test - 7-byte keys - 641.68 cycles/hash
Small key speed test - 8-byte keys - 660.01 cycles/hash
Small key speed test - 9-byte keys - 658.73 cycles/hash
Small key speed test - 10-byte keys - 658.22 cycles/hash
Small key speed test - 11-byte keys - 657.95 cycles/hash
Small key speed test - 12-byte keys - 659.11 cycles/hash
Small key speed test - 13-byte keys - 658.51 cycles/hash
Small key speed test - 14-byte keys - 657.98 cycles/hash
Small key speed test - 15-byte keys - 658.57 cycles/hash
Small key speed test - 16-byte keys - 662.70 cycles/hash
Small key speed test - 17-byte keys - 662.89 cycles/hash
Small key speed test - 18-byte keys - 662.81 cycles/hash
Small key speed test - 19-byte keys - 664.06 cycles/hash
Small key speed test - 20-byte keys - 662.91 cycles/hash
Small key speed test - 21-byte keys - 662.98 cycles/hash
Small key speed test - 22-byte keys - 663.70 cycles/hash
Small key speed test - 23-byte keys - 662.77 cycles/hash
Small key speed test - 24-byte keys - 662.54 cycles/hash
Small key speed test - 25-byte keys - 661.27 cycles/hash
Small key speed test - 26-byte keys - 662.05 cycles/hash
Small key speed test - 27-byte keys - 662.53 cycles/hash
Small key speed test - 28-byte keys - 661.38 cycles/hash
Small key speed test - 29-byte keys - 661.30 cycles/hash
Small key speed test - 30-byte keys - 661.74 cycles/hash
Small key speed test - 31-byte keys - 662.92 cycles/hash
Average 656.675 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 1173.533 cycles/op (104334 inserts, 1% deletions)
Running std HashMapTest: 1037.057 cycles/op (14.0 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 961.098 cycles/op (104334 inserts, 1% deletions)
Running fast HashMapTest: 897.431 cycles/op (11.7 stdv) ....... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 132.497319 seconds
--- Testing md5_32 "MD5, bits 32-63" GOOD
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 0.123 bytes/cycle - 350.49 MiB/sec @ 3 ghz
Alignment 6 - 0.123 bytes/cycle - 351.34 MiB/sec @ 3 ghz
Alignment 5 - 0.123 bytes/cycle - 351.18 MiB/sec @ 3 ghz
Alignment 4 - 0.123 bytes/cycle - 351.02 MiB/sec @ 3 ghz
Alignment 3 - 0.123 bytes/cycle - 351.04 MiB/sec @ 3 ghz
Alignment 2 - 0.121 bytes/cycle - 347.28 MiB/sec @ 3 ghz
Alignment 1 - 0.123 bytes/cycle - 350.92 MiB/sec @ 3 ghz
Alignment 0 - 0.123 bytes/cycle - 350.94 MiB/sec @ 3 ghz
Average - 0.123 bytes/cycle - 350.53 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 627.35 cycles/hash
Small key speed test - 2-byte keys - 627.15 cycles/hash
Small key speed test - 3-byte keys - 627.31 cycles/hash
Small key speed test - 4-byte keys - 626.61 cycles/hash
Small key speed test - 5-byte keys - 626.09 cycles/hash
Small key speed test - 6-byte keys - 626.04 cycles/hash
Small key speed test - 7-byte keys - 627.01 cycles/hash
Small key speed test - 8-byte keys - 649.01 cycles/hash
Small key speed test - 9-byte keys - 650.23 cycles/hash
Small key speed test - 10-byte keys - 650.02 cycles/hash
Small key speed test - 11-byte keys - 650.30 cycles/hash
Small key speed test - 12-byte keys - 649.78 cycles/hash
Small key speed test - 13-byte keys - 650.18 cycles/hash
Small key speed test - 14-byte keys - 648.83 cycles/hash
Small key speed test - 15-byte keys - 649.91 cycles/hash
Small key speed test - 16-byte keys - 648.33 cycles/hash
Small key speed test - 17-byte keys - 647.22 cycles/hash
Small key speed test - 18-byte keys - 649.16 cycles/hash
Small key speed test - 19-byte keys - 648.23 cycles/hash
Small key speed test - 20-byte keys - 648.28 cycles/hash
Small key speed test - 21-byte keys - 647.79 cycles/hash
Small key speed test - 22-byte keys - 649.68 cycles/hash
Small key speed test - 23-byte keys - 649.56 cycles/hash
Small key speed test - 24-byte keys - 649.43 cycles/hash
Small key speed test - 25-byte keys - 650.08 cycles/hash
Small key speed test - 26-byte keys - 650.34 cycles/hash
Small key speed test - 27-byte keys - 650.42 cycles/hash
Small key speed test - 28-byte keys - 649.73 cycles/hash
Small key speed test - 29-byte keys - 650.85 cycles/hash
Small key speed test - 30-byte keys - 649.82 cycles/hash
Small key speed test - 31-byte keys - 648.95 cycles/hash
Average 644.312 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 1144.683 cycles/op (104334 inserts, 1% deletions)
Running std HashMapTest: 1010.168 cycles/op (22.8 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 946.178 cycles/op (104334 inserts, 1% deletions)
Running fast HashMapTest: 894.116 cycles/op (10.3 stdv) ....... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 130.495913 seconds
--- Testing sha1-160 "SHA1" GOOD
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 0.202 bytes/cycle - 577.93 MiB/sec @ 3 ghz
Alignment 6 - 0.202 bytes/cycle - 577.79 MiB/sec @ 3 ghz
Alignment 5 - 0.202 bytes/cycle - 577.45 MiB/sec @ 3 ghz
Alignment 4 - 0.202 bytes/cycle - 577.91 MiB/sec @ 3 ghz
Alignment 3 - 0.202 bytes/cycle - 577.18 MiB/sec @ 3 ghz
Alignment 2 - 0.202 bytes/cycle - 576.93 MiB/sec @ 3 ghz
Alignment 1 - 0.202 bytes/cycle - 577.24 MiB/sec @ 3 ghz
Alignment 0 - 0.201 bytes/cycle - 575.02 MiB/sec @ 3 ghz
Average - 0.202 bytes/cycle - 577.18 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 944.03 cycles/hash
Small key speed test - 2-byte keys - 937.12 cycles/hash
Small key speed test - 3-byte keys - 923.81 cycles/hash
Small key speed test - 4-byte keys - 907.72 cycles/hash
Small key speed test - 5-byte keys - 909.23 cycles/hash
Small key speed test - 6-byte keys - 901.40 cycles/hash
Small key speed test - 7-byte keys - 891.49 cycles/hash
Small key speed test - 8-byte keys - 879.96 cycles/hash
Small key speed test - 9-byte keys - 872.35 cycles/hash
Small key speed test - 10-byte keys - 864.73 cycles/hash
Small key speed test - 11-byte keys - 855.17 cycles/hash
Small key speed test - 12-byte keys - 848.65 cycles/hash
Small key speed test - 13-byte keys - 842.56 cycles/hash
Small key speed test - 14-byte keys - 835.61 cycles/hash
Small key speed test - 15-byte keys - 827.65 cycles/hash
Small key speed test - 16-byte keys - 817.40 cycles/hash
Small key speed test - 17-byte keys - 806.81 cycles/hash
Small key speed test - 18-byte keys - 799.12 cycles/hash
Small key speed test - 19-byte keys - 789.82 cycles/hash
Small key speed test - 20-byte keys - 781.31 cycles/hash
Small key speed test - 21-byte keys - 774.23 cycles/hash
Small key speed test - 22-byte keys - 768.32 cycles/hash
Small key speed test - 23-byte keys - 760.98 cycles/hash
Small key speed test - 24-byte keys - 749.90 cycles/hash
Small key speed test - 25-byte keys - 743.16 cycles/hash
Small key speed test - 26-byte keys - 733.75 cycles/hash
Small key speed test - 27-byte keys - 725.63 cycles/hash
Small key speed test - 28-byte keys - 718.25 cycles/hash
Small key speed test - 29-byte keys - 712.48 cycles/hash
Small key speed test - 30-byte keys - 703.83 cycles/hash
Small key speed test - 31-byte keys - 695.98 cycles/hash
Average 816.854 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 1349.626 cycles/op (104334 inserts, 1% deletions)
Running std HashMapTest: 1242.691 cycles/op (11.0 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 1173.474 cycles/op (104334 inserts, 1% deletions)
Running fast HashMapTest: 1139.299 cycles/op (15.4 stdv) ....... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 154.129780 seconds
--- Testing sha1_32 "SHA1, low 32 bits" GOOD
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 0.199 bytes/cycle - 567.94 MiB/sec @ 3 ghz
Alignment 6 - 0.198 bytes/cycle - 567.19 MiB/sec @ 3 ghz
Alignment 5 - 0.198 bytes/cycle - 567.18 MiB/sec @ 3 ghz
Alignment 4 - 0.198 bytes/cycle - 567.18 MiB/sec @ 3 ghz
Alignment 3 - 0.198 bytes/cycle - 566.85 MiB/sec @ 3 ghz
Alignment 2 - 0.198 bytes/cycle - 567.84 MiB/sec @ 3 ghz
Alignment 1 - 0.199 bytes/cycle - 568.55 MiB/sec @ 3 ghz
Alignment 0 - 0.198 bytes/cycle - 566.09 MiB/sec @ 3 ghz
Average - 0.198 bytes/cycle - 567.35 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 886.74 cycles/hash
Small key speed test - 2-byte keys - 864.46 cycles/hash
Small key speed test - 3-byte keys - 855.88 cycles/hash
Small key speed test - 4-byte keys - 843.44 cycles/hash
Small key speed test - 5-byte keys - 833.21 cycles/hash
Small key speed test - 6-byte keys - 824.74 cycles/hash
Small key speed test - 7-byte keys - 818.22 cycles/hash
Small key speed test - 8-byte keys - 826.54 cycles/hash
Small key speed test - 9-byte keys - 817.41 cycles/hash
Small key speed test - 10-byte keys - 811.79 cycles/hash
Small key speed test - 11-byte keys - 804.31 cycles/hash
Small key speed test - 12-byte keys - 795.70 cycles/hash
Small key speed test - 13-byte keys - 781.30 cycles/hash
Small key speed test - 14-byte keys - 770.06 cycles/hash
Small key speed test - 15-byte keys - 762.68 cycles/hash
Small key speed test - 16-byte keys - 751.89 cycles/hash
Small key speed test - 17-byte keys - 738.55 cycles/hash
Small key speed test - 18-byte keys - 730.16 cycles/hash
Small key speed test - 19-byte keys - 722.59 cycles/hash
Small key speed test - 20-byte keys - 722.55 cycles/hash
Small key speed test - 21-byte keys - 729.72 cycles/hash
Small key speed test - 22-byte keys - 721.24 cycles/hash
Small key speed test - 23-byte keys - 711.08 cycles/hash
Small key speed test - 24-byte keys - 686.87 cycles/hash
Small key speed test - 25-byte keys - 695.00 cycles/hash
Small key speed test - 26-byte keys - 686.99 cycles/hash
Small key speed test - 27-byte keys - 681.67 cycles/hash
Small key speed test - 28-byte keys - 655.70 cycles/hash
Small key speed test - 29-byte keys - 662.52 cycles/hash
Small key speed test - 30-byte keys - 657.42 cycles/hash
Small key speed test - 31-byte keys - 649.32 cycles/hash
Average 758.056 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 1307.181 cycles/op (104334 inserts, 1% deletions)
Running std HashMapTest: 1205.346 cycles/op (17.9 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 1120.337 cycles/op (104334 inserts, 1% deletions)
Running fast HashMapTest: 1096.489 cycles/op (21.2 stdv) ....... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 144.009929 seconds
--- Testing sha1_64 "SHA1, low 64 bits" GOOD
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 0.201 bytes/cycle - 575.77 MiB/sec @ 3 ghz
Alignment 6 - 0.201 bytes/cycle - 575.20 MiB/sec @ 3 ghz
Alignment 5 - 0.201 bytes/cycle - 575.18 MiB/sec @ 3 ghz
Alignment 4 - 0.201 bytes/cycle - 575.27 MiB/sec @ 3 ghz
Alignment 3 - 0.201 bytes/cycle - 575.90 MiB/sec @ 3 ghz
Alignment 2 - 0.201 bytes/cycle - 576.00 MiB/sec @ 3 ghz
Alignment 1 - 0.202 bytes/cycle - 577.46 MiB/sec @ 3 ghz
Alignment 0 - 0.201 bytes/cycle - 574.69 MiB/sec @ 3 ghz
Average - 0.201 bytes/cycle - 575.68 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 878.97 cycles/hash
Small key speed test - 2-byte keys - 876.38 cycles/hash
Small key speed test - 3-byte keys - 867.72 cycles/hash
Small key speed test - 4-byte keys - 861.80 cycles/hash
Small key speed test - 5-byte keys - 852.78 cycles/hash
Small key speed test - 6-byte keys - 845.81 cycles/hash
Small key speed test - 7-byte keys - 839.72 cycles/hash
Small key speed test - 8-byte keys - 829.62 cycles/hash
Small key speed test - 9-byte keys - 824.83 cycles/hash
Small key speed test - 10-byte keys - 813.19 cycles/hash
Small key speed test - 11-byte keys - 806.63 cycles/hash
Small key speed test - 12-byte keys - 797.46 cycles/hash
Small key speed test - 13-byte keys - 788.78 cycles/hash
Small key speed test - 14-byte keys - 782.86 cycles/hash
Small key speed test - 15-byte keys - 775.04 cycles/hash
Small key speed test - 16-byte keys - 759.06 cycles/hash
Small key speed test - 17-byte keys - 750.06 cycles/hash
Small key speed test - 18-byte keys - 741.68 cycles/hash
Small key speed test - 19-byte keys - 733.92 cycles/hash
Small key speed test - 20-byte keys - 726.04 cycles/hash
Small key speed test - 21-byte keys - 730.03 cycles/hash
Small key speed test - 22-byte keys - 721.26 cycles/hash
Small key speed test - 23-byte keys - 712.79 cycles/hash
Small key speed test - 24-byte keys - 704.68 cycles/hash
Small key speed test - 25-byte keys - 696.82 cycles/hash
Small key speed test - 26-byte keys - 686.11 cycles/hash
Small key speed test - 27-byte keys - 681.16 cycles/hash
Small key speed test - 28-byte keys - 668.26 cycles/hash
Small key speed test - 29-byte keys - 659.51 cycles/hash
Small key speed test - 30-byte keys - 653.24 cycles/hash
Small key speed test - 31-byte keys - 645.13 cycles/hash
Average 764.881 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 1322.226 cycles/op (104334 inserts, 1% deletions)
Running std HashMapTest: 1228.166 cycles/op (33.1 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 1159.211 cycles/op (104334 inserts, 1% deletions)
Running fast HashMapTest: 1079.914 cycles/op (15.2 stdv) ....... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 145.006019 seconds
--- Testing sha2-224 "SHA2-224" POOR
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys
Alignment 7 - 0.080 bytes/cycle - 228.58 MiB/sec @ 3 ghz
Alignment 6 - 0.080 bytes/cycle - 229.49 MiB/sec @ 3 ghz
Alignment 5 - 0.080 bytes/cycle - 229.27 MiB/sec @ 3 ghz
Alignment 4 - 0.080 bytes/cycle - 229.18 MiB/sec @ 3 ghz
Alignment 3 - 0.080 bytes/cycle - 229.27 MiB/sec @ 3 ghz
Alignment 2 - 0.080 bytes/cycle - 229.07 MiB/sec @ 3 ghz
Alignment 1 - 0.080 bytes/cycle - 228.58 MiB/sec @ 3 ghz
Alignment 0 - 0.080 bytes/cycle - 228.93 MiB/sec @ 3 ghz
Average - 0.080 bytes/cycle - 229.05 MiB/sec @ 3 ghz
Small key speed test - 1-byte keys - 981.25 cycles/hash
Small key speed test - 2-byte keys - 967.42 cycles/hash
Small key speed test - 3-byte keys - 966.71 cycles/hash
Small key speed test - 4-byte keys - 965.66 cycles/hash
Small key speed test - 5-byte keys - 967.84 cycles/hash
Small key speed test - 6-byte keys - 966.71 cycles/hash
Small key speed test - 7-byte keys - 962.28 cycles/hash
Small key speed test - 8-byte keys - 961.37 cycles/hash
Small key speed test - 9-byte keys - 960.16 cycles/hash
Small key speed test - 10-byte keys - 958.88 cycles/hash
Small key speed test - 11-byte keys - 959.61 cycles/hash
Small key speed test - 12-byte keys - 957.36 cycles/hash
Small key speed test - 13-byte keys - 956.51 cycles/hash
Small key speed test - 14-byte keys - 952.77 cycles/hash
Small key speed test - 15-byte keys - 949.85 cycles/hash
Small key speed test - 16-byte keys - 950.37 cycles/hash
Small key speed test - 17-byte keys - 950.31 cycles/hash
Small key speed test - 18-byte keys - 940.32 cycles/hash
Small key speed test - 19-byte keys - 931.26 cycles/hash
Small key speed test - 20-byte keys - 934.60 cycles/hash
Small key speed test - 21-byte keys - 921.95 cycles/hash
Small key speed test - 22-byte keys - 919.06 cycles/hash
Small key speed test - 23-byte keys - 915.64 cycles/hash
Small key speed test - 24-byte keys - 914.42 cycles/hash
Small key speed test - 25-byte keys - 914.44 cycles/hash
Small key speed test - 26-byte keys - 911.06 cycles/hash
Small key speed test - 27-byte keys - 909.39 cycles/hash
Small key speed test - 28-byte keys - 910.96 cycles/hash
Small key speed test - 29-byte keys - 911.07 cycles/hash
Small key speed test - 30-byte keys - 906.62 cycles/hash
Small key speed test - 31-byte keys - 904.70 cycles/hash
Average 941.309 cycles/hash
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 1437.607 cycles/op (104334 inserts, 1% deletions)
Running std HashMapTest: 1338.294 cycles/op (10.1 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 1244.613 cycles/op (104334 inserts, 1% deletions)
Running fast HashMapTest: 1174.740 cycles/op (7.4 stdv) ....... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 190.566384 seconds
--- Testing sha2-224_64 "SHA2-224, low 64 bits" POOR
[[[ Speed Tests ]]]
Bulk speed test - 262144-byte keys