-
Notifications
You must be signed in to change notification settings - Fork 1
/
SMHasher3_MuseAir-BFast_--extra.txt
3172 lines (2920 loc) · 256 KB
/
SMHasher3_MuseAir-BFast_--extra.txt
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 MuseAir-BFast "MuseAir hash BFast variant v0.2 @ 64-bit output"
[[[ Sanity Tests ]]]
Verification value LE 0x98CDFE3E ...... PASS
Running sanity check 1 .......... PASS
Running sanity check 2 .......... PASS
Running append zeroes test .......... PASS
Running prepend zeroes test .......... PASS
Running thread-safety test 1 .......... PASS
Running thread-safety test 2 .......... PASS
[[[ Speed Tests ]]]
Small key speed test - [1, 31]-byte keys
1-byte keys - 18.48 cycles/hash
2-byte keys - 18.49 cycles/hash
3-byte keys - 18.49 cycles/hash
4-byte keys - 13.15 cycles/hash
5-byte keys - 27.11 cycles/hash
6-byte keys - 27.11 cycles/hash
7-byte keys - 27.11 cycles/hash
8-byte keys - 13.15 cycles/hash
9-byte keys - 27.11 cycles/hash
10-byte keys - 27.11 cycles/hash
11-byte keys - 27.11 cycles/hash
12-byte keys - 13.15 cycles/hash
13-byte keys - 13.22 cycles/hash
14-byte keys - 13.22 cycles/hash
15-byte keys - 13.22 cycles/hash
16-byte keys - 13.15 cycles/hash
17-byte keys - 35.33 cycles/hash
18-byte keys - 35.33 cycles/hash
19-byte keys - 35.33 cycles/hash
20-byte keys - 35.33 cycles/hash
21-byte keys - 35.33 cycles/hash
22-byte keys - 35.33 cycles/hash
23-byte keys - 35.33 cycles/hash
24-byte keys - 42.72 cycles/hash
25-byte keys - 42.72 cycles/hash
26-byte keys - 42.72 cycles/hash
27-byte keys - 42.72 cycles/hash
28-byte keys - 41.91 cycles/hash
29-byte keys - 41.90 cycles/hash
30-byte keys - 41.90 cycles/hash
31-byte keys - 41.90 cycles/hash
Average - 28.91 cycles/hash
rnd-byte keys - 28.89 cycles/hash
Bulk speed test - 262144-byte keys
Alignment 7 - 10.14 bytes/cycle - 33.07 GiB/sec @ 3.5 ghz
Alignment 6 - 10.14 bytes/cycle - 33.07 GiB/sec @ 3.5 ghz
Alignment 5 - 10.13 bytes/cycle - 33.02 GiB/sec @ 3.5 ghz
Alignment 4 - 9.97 bytes/cycle - 32.50 GiB/sec @ 3.5 ghz
Alignment 3 - 9.97 bytes/cycle - 32.50 GiB/sec @ 3.5 ghz
Alignment 2 - 9.97 bytes/cycle - 32.50 GiB/sec @ 3.5 ghz
Alignment 1 - 9.98 bytes/cycle - 32.54 GiB/sec @ 3.5 ghz
Alignment 0 - 9.97 bytes/cycle - 32.50 GiB/sec @ 3.5 ghz
Average - 10.03 bytes/cycle - 32.71 GiB/sec @ 3.5 ghz
Alignment rnd - 9.97 bytes/cycle - 32.50 GiB/sec @ 3.5 ghz
Bulk speed test - [262017, 262144]-byte keys
Alignment 7 - 9.96 bytes/cycle - 32.47 GiB/sec @ 3.5 ghz
Alignment 6 - 9.96 bytes/cycle - 32.47 GiB/sec @ 3.5 ghz
Alignment 5 - 9.96 bytes/cycle - 32.47 GiB/sec @ 3.5 ghz
Alignment 4 - 9.96 bytes/cycle - 32.48 GiB/sec @ 3.5 ghz
Alignment 3 - 9.96 bytes/cycle - 32.47 GiB/sec @ 3.5 ghz
Alignment 2 - 9.96 bytes/cycle - 32.47 GiB/sec @ 3.5 ghz
Alignment 1 - 9.96 bytes/cycle - 32.47 GiB/sec @ 3.5 ghz
Alignment 0 - 9.96 bytes/cycle - 32.47 GiB/sec @ 3.5 ghz
Average - 9.96 bytes/cycle - 32.47 GiB/sec @ 3.5 ghz
Alignment rnd - 9.93 bytes/cycle - 32.38 GiB/sec @ 3.5 ghz
[[[ 'Hashmap' Speed Tests ]]]
std::unordered_map
Init std HashMapTest: 812.715 cycles/op (792291 inserts, 1% deletions)
Running std HashMapTest: 535.115 cycles/op (7.4 stdv)
greg7mdp/parallel-hashmap
Init fast HashMapTest: 587.499 cycles/op (792291 inserts, 1% deletions)
Running fast HashMapTest: 455.415 cycles/op (1.7 stdv)
[[[ Avalanche Tests ]]]
Testing 3-byte keys, 300000 reps..................max is 0.691% at bit 21 -> out 28 (^ 2)
Testing 4-byte keys, 300000 reps..................max is 0.729% at bit 9 -> out 60 (^ 3)
Testing 5-byte keys, 300000 reps..................max is 0.611% at bit 34 -> out 4 (^ 0)
Testing 6-byte keys, 300000 reps..................max is 0.628% at bit 37 -> out 28 (^ 0)
Testing 7-byte keys, 300000 reps..................max is 0.727% at bit 2 -> out 26 (^ 2)
Testing 8-byte keys, 300000 reps..................max is 0.851% at bit 0 -> out 15 (^ 6)
Testing 9-byte keys, 300000 reps..................max is 0.714% at bit 13 -> out 36 (^ 1)
Testing 10-byte keys, 300000 reps..................max is 0.661% at bit 32 -> out 29 (^ 0)
Testing 12-byte keys, 300000 reps..................max is 0.705% at bit 60 -> out 38 (^ 0)
Testing 16-byte keys, 300000 reps..................max is 0.821% at bit 13 -> out 19 (^ 4)
Testing 20-byte keys, 300000 reps..................max is 0.801% at bit 18 -> out 32 (^ 3)
Testing 24-byte keys, 300000 reps..................max is 0.660% at bit 53 -> out 16 (^ 0)
Testing 28-byte keys, 300000 reps..................max is 0.770% at bit 156 -> out 51 (^ 1)
Testing 32-byte keys, 300000 reps..................max is 0.730% at bit 19 -> out 22 (^ 0)
Testing 40-byte keys, 300000 reps..................max is 0.724% at bit 295 -> out 2 (^ 0)
Testing 48-byte keys, 300000 reps..................max is 0.695% at bit 100 -> out 1 (^ 0)
Testing 56-byte keys, 300000 reps..................max is 0.783% at bit 309 -> out 51 (^ 1)
Testing 64-byte keys, 300000 reps..................max is 0.771% at bit 332 -> out 10 (^ 0)
Testing 128-byte keys, 300000 reps..................max is 0.821% at bit 466 -> out 46 (^ 1)
Testing 160-byte keys, 300000 reps..................max is 0.899% at bit 1046 -> out 52 (^ 3)
Testing 192-byte keys, 300000 reps..................max is 0.845% at bit 1337 -> out 13 (^ 1)
[[[ BIC 'Bit Independence Criteria' Tests ]]]
Testing 3-byte keys, 1200000 reps............max 0.0041 at bit 0 -> out ( 9, 17) (^ 1)
Testing 4-byte keys, 1200000 reps............max 0.0041 at bit 22 -> out ( 6, 10) (^ 1)
Testing 6-byte keys, 1200000 reps............max 0.0039 at bit 31 -> out ( 5, 17) (^ 0)
Testing 8-byte keys, 1200000 reps............max 0.0040 at bit 11 -> out ( 18, 25) (^ 0)
Testing 11-byte keys, 1200000 reps............max 0.0043 at bit 7 -> out ( 14, 56) (^ 1)
Testing 15-byte keys, 1200000 reps............max 0.0045 at bit 99 -> out ( 19, 40) (^ 2)
Testing 28-byte keys, 600000 reps............max 0.0063 at bit 79 -> out ( 41, 61) (^ 1)
Testing 52-byte keys, 600000 reps............max 0.0065 at bit 225 -> out ( 4, 33) (^ 1)
[[[ Keyset 'Zeroes' Tests ]]]
Keyset 'Zeroes' - 204800 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 4.9, actual 8 (1.638x) (^ 2)
Testing all collisions (low 32-bit) - Expected 4.9, actual 2 (0.410x) (^ 0)
Testing all collisions (high 27-bit) - Expected 156.2, actual 127 (0.813x) (^ 0)
Testing all collisions (low 27-bit) - Expected 156.2, actual 170 (1.089x) (^ 2)
Testing all collisions (high 16..30 bits) - Worst is 23 bits: 2570/2480 (1.036x) (^ 1)
Testing all collisions (low 16..30 bits) - Worst is 27 bits: 170/156 (1.089x) (^ 0)
Testing distribution (any 8..15 bits) - Worst bias is 8 bits at bit 9: 0.580x (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 4.9, actual 8 (1.638x) (^ 2)
Testing all collisions (low 32-bit) - Expected 4.9, actual 3 (0.614x) (^ 0)
Testing all collisions (high 27-bit) - Expected 156.2, actual 156 (1.000x) (^ 0)
Testing all collisions (low 27-bit) - Expected 156.2, actual 143 (0.916x) (^ 0)
Testing all collisions (high 16..30 bits) - Worst is 28 bits: 84/78 (1.075x) (^ 0)
Testing all collisions (low 16..30 bits) - Worst is 21 bits: 9794/9682 (1.012x) (^ 0)
Testing distribution (any 8..15 bits) - Worst bias is 10 bits at bit 62: 0.501x (^ 0)
[[[ Keyset 'Cyclic' Tests ]]]
Keyset 'Cyclic' - 4 cycles of 3 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 89 (0.765x) (^ 0)
Testing all collisions (low 32-bit) - Expected 116.4, actual 103 (0.885x) (^ 0)
Testing all collisions (high 16..35 bits) - Worst is 24 bits: 29396/29219 (1.006x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 28 bits: 1886/1860 (1.014x) (^ 0)
Keyset 'Cyclic' - 4 cycles of 4 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 126 (1.082x) (^ 2)
Testing all collisions (low 32-bit) - Expected 116.4, actual 110 (0.945x) (^ 0)
Testing all collisions (high 16..35 bits) - Worst is 22 bits: 110739/110274 (1.004x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 35 bits: 23/15 (1.581x) (^ 1)
Keyset 'Cyclic' - 4 cycles of 5 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 111 (0.954x) (^ 0)
Testing all collisions (low 32-bit) - Expected 116.4, actual 128 (1.100x) (^ 2)
Testing all collisions (high 16..35 bits) - Worst is 27 bits: 3800/3716 (1.023x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 29 bits: 995/931 (1.069x) (^ 1)
Keyset 'Cyclic' - 4 cycles of 8 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 126 (1.082x) (^ 2)
Testing all collisions (low 32-bit) - Expected 116.4, actual 97 (0.833x) (^ 0)
Testing all collisions (high 16..35 bits) - Worst is 30 bits: 509/466 (1.093x) (^ 1)
Testing all collisions (low 16..35 bits) - Worst is 23 bits: 57418/57305 (1.002x) (^ 0)
Keyset 'Cyclic' - 8 cycles of 3 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 98 (0.842x) (^ 0)
Testing all collisions (low 32-bit) - Expected 116.4, actual 107 (0.919x) (^ 0)
Testing all collisions (high 16..35 bits) - Worst is 23 bits: 57344/57305 (1.001x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 24 bits: 29361/29219 (1.005x) (^ 0)
Keyset 'Cyclic' - 8 cycles of 4 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 116 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 116.4, actual 111 (0.954x) (^ 0)
Testing all collisions (high 16..35 bits) - Worst is 34 bits: 37/29 (1.271x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 26 bits: 7605/7414 (1.026x) (^ 2)
Keyset 'Cyclic' - 8 cycles of 5 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 135 (1.160x) (^ 4)
Testing all collisions (low 32-bit) - Expected 116.4, actual 114 (0.979x) (^ 0)
Testing all collisions (high 16..35 bits) - Worst is 32 bits: 135/116 (1.160x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 28 bits: 1977/1860 (1.063x) (^ 3)
Keyset 'Cyclic' - 8 cycles of 8 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 114 (0.979x) (^ 0)
Testing all collisions (low 32-bit) - Expected 116.4, actual 122 (1.048x) (^ 1)
Testing all collisions (high 16..35 bits) - Worst is 23 bits: 57502/57305 (1.003x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 20 bits: 355893/355464 (1.001x) (^ 0)
Keyset 'Cyclic' - 12 cycles of 3 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 118 (1.014x) (^ 1)
Testing all collisions (low 32-bit) - Expected 116.4, actual 143 (1.228x) (^ 6)
Testing all collisions (high 16..35 bits) - Worst is 35 bits: 21/15 (1.443x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 28 bits: 1972/1860 (1.060x) (^ 3)
Keyset 'Cyclic' - 12 cycles of 4 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 142 (1.220x) (^ 6)
Testing all collisions (low 32-bit) - Expected 116.4, actual 127 (1.091x) (^ 2)
Testing all collisions (high 16..35 bits) - Worst is 31 bits: 284/233 (1.220x) (^ 6)
Testing all collisions (low 16..35 bits) - Worst is 33 bits: 70/58 (1.203x) (^ 0)
Keyset 'Cyclic' - 12 cycles of 5 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 121 (1.039x) (^ 1)
Testing all collisions (low 32-bit) - Expected 116.4, actual 99 (0.850x) (^ 0)
Testing all collisions (high 16..35 bits) - Worst is 33 bits: 66/58 (1.134x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 20 bits: 355695/355464 (1.001x) (^ 0)
Keyset 'Cyclic' - 12 cycles of 8 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 104 (0.893x) (^ 0)
Testing all collisions (low 32-bit) - Expected 116.4, actual 114 (0.979x) (^ 0)
Testing all collisions (high 16..35 bits) - Worst is 35 bits: 22/15 (1.512x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 31 bits: 236/233 (1.014x) (^ 0)
Keyset 'Cyclic' - 16 cycles of 3 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 140 (1.203x) (^ 5)
Testing all collisions (low 32-bit) - Expected 116.4, actual 109 (0.936x) (^ 0)
Testing all collisions (high 16..35 bits) - Worst is 27 bits: 3886/3716 (1.046x) (^ 4)
Testing all collisions (low 16..35 bits) - Worst is 35 bits: 22/15 (1.512x) (^ 0)
Keyset 'Cyclic' - 16 cycles of 4 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 113 (0.971x) (^ 0)
Testing all collisions (low 32-bit) - Expected 116.4, actual 118 (1.014x) (^ 1)
Testing all collisions (high 16..35 bits) - Worst is 34 bits: 34/29 (1.168x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 35 bits: 22/15 (1.512x) (^ 0)
Keyset 'Cyclic' - 16 cycles of 5 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 110 (0.945x) (^ 0)
Testing all collisions (low 32-bit) - Expected 116.4, actual 116 (1.000x) (^ 0)
Testing all collisions (high 16..35 bits) - Worst is 20 bits: 355888/355464 (1.001x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 31 bits: 260/233 (1.117x) (^ 0)
Keyset 'Cyclic' - 16 cycles of 8 bytes - 1000000 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 116.4, actual 118 (1.014x) (^ 1)
Testing all collisions (low 32-bit) - Expected 116.4, actual 115 (0.988x) (^ 0)
Testing all collisions (high 16..35 bits) - Worst is 25 bits: 14957/14754 (1.014x) (^ 0)
Testing all collisions (low 16..35 bits) - Worst is 25 bits: 14950/14754 (1.013x) (^ 0)
[[[ Keyset 'Sparse' Tests ]]]
Keyset 'Sparse' - 2-byte keys with up to 6 bits set - 14893 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 20-bit) - Expected 105.3, actual 102 (0.969x) (^ 0)
Testing all collisions (low 20-bit) - Expected 105.3, actual 101 (0.960x) (^ 0)
Testing all collisions (high 10..23 bits) - Worst is 15 bits: 2952/2925 (1.009x) (^ 0)
Testing all collisions (low 10..23 bits) - Worst is 18 bits: 428/415 (1.031x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 20-bit) - Expected 105.3, actual 113 (1.074x) (^ 2)
Testing all collisions (low 20-bit) - Expected 105.3, actual 89 (0.846x) (^ 0)
Testing all collisions (high 10..23 bits) - Worst is 18 bits: 441/415 (1.062x) (^ 0)
Testing all collisions (low 10..23 bits) - Worst is 16 bits: 1637/1571 (1.042x) (^ 0)
Keyset 'Sparse' - 3-byte keys with up to 4 bits set - 12951 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 19-bit) - Expected 158.6, actual 167 (1.053x) (^ 1)
Testing all collisions (low 19-bit) - Expected 158.6, actual 170 (1.072x) (^ 2)
Testing all collisions (high 10..22 bits) - Worst is 20 bits: 94/80 (1.180x) (^ 0)
Testing all collisions (low 10..22 bits) - Worst is 19 bits: 170/159 (1.072x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 19-bit) - Expected 158.6, actual 139 (0.876x) (^ 0)
Testing all collisions (low 19-bit) - Expected 158.6, actual 162 (1.021x) (^ 1)
Testing all collisions (high 10..22 bits) - Worst is 13 bits: 6474/6445 (1.005x) (^ 0)
Testing all collisions (low 10..22 bits) - Worst is 17 bits: 654/619 (1.056x) (^ 0)
Keyset 'Sparse' - 4-byte keys with up to 4 bits set - 41449 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.2, actual 1 (1.000x) (^ 1)
Testing all collisions (low 32-bit) - Expected 0.2, actual 0 (0.000x) (^ 0)
Testing all collisions (high 23-bit) - Expected 102.2, actual 100 (0.978x) (^ 0)
Testing all collisions (low 23-bit) - Expected 102.2, actual 82 (0.802x) (^ 0)
Testing all collisions (high 12..26 bits) - Worst is 16 bits: 10838/10731 (1.010x) (^ 0)
Testing all collisions (low 12..26 bits) - Worst is 13 bits: 33317/33309 (1.000x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.2, actual 0 (0.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.2, actual 0 (0.000x) (^ 0)
Testing all collisions (high 23-bit) - Expected 102.2, actual 96 (0.939x) (^ 0)
Testing all collisions (low 23-bit) - Expected 102.2, actual 94 (0.919x) (^ 0)
Testing all collisions (high 12..26 bits) - Worst is 26 bits: 14/13 (1.094x) (^ 0)
Testing all collisions (low 12..26 bits) - Worst is 25 bits: 31/26 (1.211x) (^ 0)
Keyset 'Sparse' - 5-byte keys with up to 4 bits set - 102091 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 1.2, actual 2 (1.000x) (^ 1)
Testing all collisions (low 32-bit) - Expected 1.2, actual 1 (1.000x) (^ 0)
Testing all collisions (high 25-bit) - Expected 155.1, actual 156 (1.000x) (^ 1)
Testing all collisions (low 25-bit) - Expected 155.1, actual 157 (1.012x) (^ 1)
Testing all collisions (high 13..28 bits) - Worst is 23 bits: 654/619 (1.057x) (^ 0)
Testing all collisions (low 13..28 bits) - Worst is 22 bits: 1276/1232 (1.035x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 1.2, actual 0 (0.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 1.2, actual 0 (0.000x) (^ 0)
Testing all collisions (high 25-bit) - Expected 155.1, actual 149 (0.960x) (^ 0)
Testing all collisions (low 25-bit) - Expected 155.1, actual 156 (1.000x) (^ 1)
Testing all collisions (high 13..28 bits) - Worst is 24 bits: 312/310 (1.007x) (^ 0)
Testing all collisions (low 13..28 bits) - Worst is 21 bits: 2504/2445 (1.024x) (^ 0)
Keyset 'Sparse' - 6-byte keys with up to 3 bits set - 18473 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 20-bit) - Expected 161.8, actual 167 (1.032x) (^ 1)
Testing all collisions (low 20-bit) - Expected 161.8, actual 158 (0.977x) (^ 0)
Testing all collisions (high 11..24 bits) - Worst is 18 bits: 674/636 (1.060x) (^ 0)
Testing all collisions (low 11..24 bits) - Worst is 24 bits: 12/10 (1.180x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 20-bit) - Expected 161.8, actual 169 (1.045x) (^ 1)
Testing all collisions (low 20-bit) - Expected 161.8, actual 161 (0.995x) (^ 0)
Testing all collisions (high 11..24 bits) - Worst is 19 bits: 337/322 (1.048x) (^ 0)
Testing all collisions (low 11..24 bits) - Worst is 21 bits: 88/81 (1.085x) (^ 0)
Keyset 'Sparse' - 7-byte keys with up to 3 bits set - 29317 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.1, actual 0 (0.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.1, actual 1 (1.000x) (^ 2)
Testing all collisions (high 22-bit) - Expected 102.2, actual 104 (1.017x) (^ 1)
Testing all collisions (low 22-bit) - Expected 102.2, actual 105 (1.027x) (^ 1)
Testing all collisions (high 11..25 bits) - Worst is 24 bits: 31/26 (1.211x) (^ 0)
Testing all collisions (low 11..25 bits) - Worst is 20 bits: 416/406 (1.025x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.1, actual 0 (0.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.1, actual 0 (0.000x) (^ 0)
Testing all collisions (high 22-bit) - Expected 102.2, actual 106 (1.037x) (^ 1)
Testing all collisions (low 22-bit) - Expected 102.2, actual 97 (0.949x) (^ 0)
Testing all collisions (high 11..25 bits) - Worst is 18 bits: 1651/1580 (1.045x) (^ 1)
Testing all collisions (low 11..25 bits) - Worst is 25 bits: 17/13 (1.328x) (^ 0)
Keyset 'Sparse' - 8-byte keys with up to 3 bits set - 43745 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.2, actual 0 (0.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.2, actual 1 (1.000x) (^ 1)
Testing all collisions (high 23-bit) - Expected 113.9, actual 122 (1.071x) (^ 2)
Testing all collisions (low 23-bit) - Expected 113.9, actual 103 (0.905x) (^ 0)
Testing all collisions (high 12..26 bits) - Worst is 24 bits: 69/57 (1.211x) (^ 0)
Testing all collisions (low 12..26 bits) - Worst is 25 bits: 30/29 (1.053x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.2, actual 0 (0.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.2, actual 0 (0.000x) (^ 0)
Testing all collisions (high 23-bit) - Expected 113.9, actual 119 (1.045x) (^ 1)
Testing all collisions (low 23-bit) - Expected 113.9, actual 124 (1.089x) (^ 2)
Testing all collisions (high 12..26 bits) - Worst is 21 bits: 471/453 (1.040x) (^ 0)
Testing all collisions (low 12..26 bits) - Worst is 25 bits: 37/29 (1.298x) (^ 0)
Keyset 'Sparse' - 9-byte keys with up to 3 bits set - 62269 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.5, actual 0 (0.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.5, actual 1 (1.000x) (^ 1)
Testing all collisions (high 24-bit) - Expected 115.4, actual 118 (1.022x) (^ 1)
Testing all collisions (low 24-bit) - Expected 115.4, actual 102 (0.884x) (^ 0)
Testing all collisions (high 12..27 bits) - Worst is 22 bits: 499/460 (1.085x) (^ 1)
Testing all collisions (low 12..27 bits) - Worst is 18 bits: 6855/6843 (1.002x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.5, actual 0 (0.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.5, actual 0 (0.000x) (^ 0)
Testing all collisions (high 24-bit) - Expected 115.4, actual 113 (0.979x) (^ 0)
Testing all collisions (low 24-bit) - Expected 115.4, actual 117 (1.014x) (^ 1)
Testing all collisions (high 12..27 bits) - Worst is 23 bits: 240/231 (1.041x) (^ 0)
Testing all collisions (low 12..27 bits) - Worst is 23 bits: 245/231 (1.063x) (^ 0)
Keyset 'Sparse' - 10-byte keys with up to 3 bits set - 85401 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.8, actual 2 (2.356x) (^ 1)
Testing all collisions (low 32-bit) - Expected 0.8, actual 1 (1.000x) (^ 1)
Testing all collisions (high 25-bit) - Expected 108.6, actual 103 (0.949x) (^ 0)
Testing all collisions (low 25-bit) - Expected 108.6, actual 112 (1.031x) (^ 1)
Testing all collisions (high 13..28 bits) - Worst is 22 bits: 899/864 (1.041x) (^ 0)
Testing all collisions (low 13..28 bits) - Worst is 24 bits: 223/217 (1.028x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.8, actual 0 (0.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 0.8, actual 2 (2.356x) (^ 1)
Testing all collisions (high 25-bit) - Expected 108.6, actual 121 (1.114x) (^ 2)
Testing all collisions (low 25-bit) - Expected 108.6, actual 132 (1.216x) (^ 5)
Testing all collisions (high 13..28 bits) - Worst is 25 bits: 121/109 (1.114x) (^ 0)
Testing all collisions (low 13..28 bits) - Worst is 24 bits: 266/217 (1.226x) (^ 6)
Keyset 'Sparse' - 11-byte keys with up to 3 bits set - 113653 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 1.5, actual 3 (1.995x) (^ 2)
Testing all collisions (low 32-bit) - Expected 1.5, actual 1 (0.665x) (^ 0)
Testing all collisions (high 25-bit) - Expected 192.3, actual 207 (1.077x) (^ 2)
Testing all collisions (low 25-bit) - Expected 192.3, actual 177 (0.921x) (^ 0)
Testing all collisions (high 13..29 bits) - Worst is 29 bits: 20/12 (1.663x) (^ 1)
Testing all collisions (low 13..29 bits) - Worst is 28 bits: 30/24 (1.247x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 1.5, actual 1 (0.665x) (^ 0)
Testing all collisions (low 32-bit) - Expected 1.5, actual 1 (0.665x) (^ 0)
Testing all collisions (high 25-bit) - Expected 192.3, actual 207 (1.077x) (^ 2)
Testing all collisions (low 25-bit) - Expected 192.3, actual 208 (1.082x) (^ 2)
Testing all collisions (high 13..29 bits) - Worst is 24 bits: 418/384 (1.088x) (^ 0)
Testing all collisions (low 13..29 bits) - Worst is 22 bits: 1591/1526 (1.043x) (^ 0)
Keyset 'Sparse' - 12-byte keys with up to 3 bits set - 147537 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 2.5, actual 2 (0.789x) (^ 0)
Testing all collisions (low 32-bit) - Expected 2.5, actual 2 (0.789x) (^ 0)
Testing all collisions (high 26-bit) - Expected 162.1, actual 150 (0.926x) (^ 0)
Testing all collisions (low 26-bit) - Expected 162.1, actual 169 (1.043x) (^ 1)
Testing all collisions (high 13..30 bits) - Worst is 21 bits: 5143/5070 (1.014x) (^ 0)
Testing all collisions (low 13..30 bits) - Worst is 25 bits: 344/324 (1.062x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 2.5, actual 1 (0.395x) (^ 0)
Testing all collisions (low 32-bit) - Expected 2.5, actual 1 (0.395x) (^ 0)
Testing all collisions (high 26-bit) - Expected 162.1, actual 159 (0.981x) (^ 0)
Testing all collisions (low 26-bit) - Expected 162.1, actual 169 (1.043x) (^ 1)
Testing all collisions (high 13..30 bits) - Worst is 24 bits: 668/647 (1.033x) (^ 0)
Testing all collisions (low 13..30 bits) - Worst is 19 bits: 19051/18941 (1.006x) (^ 0)
Keyset 'Sparse' - 13-byte keys with up to 3 bits set - 187565 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 4.1, actual 3 (0.733x) (^ 0)
Testing all collisions (low 32-bit) - Expected 4.1, actual 2 (0.488x) (^ 0)
Testing all collisions (high 27-bit) - Expected 131.0, actual 115 (0.878x) (^ 0)
Testing all collisions (low 27-bit) - Expected 131.0, actual 134 (1.023x) (^ 1)
Testing all collisions (high 14..30 bits) - Worst is 18 bits: 53652/53595 (1.001x) (^ 0)
Testing all collisions (low 14..30 bits) - Worst is 28 bits: 78/66 (1.191x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 4.1, actual 6 (1.465x) (^ 1)
Testing all collisions (low 32-bit) - Expected 4.1, actual 10 (2.442x) (^ 6)
Testing all collisions (high 27-bit) - Expected 131.0, actual 116 (0.886x) (^ 0)
Testing all collisions (low 27-bit) - Expected 131.0, actual 141 (1.076x) (^ 2)
Testing all collisions (high 14..30 bits) - Worst is 21 bits: 8209/8143 (1.008x) (^ 0)
Testing all collisions (low 14..30 bits) - Worst is 29 bits: 44/33 (1.343x) (^ 1)
Keyset 'Sparse' - 14-byte keys with up to 3 bits set - 234249 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 6.4, actual 4 (0.626x) (^ 0)
Testing all collisions (low 32-bit) - Expected 6.4, actual 6 (1.000x) (^ 0)
Testing all collisions (high 28-bit) - Expected 102.2, actual 97 (0.949x) (^ 0)
Testing all collisions (low 28-bit) - Expected 102.2, actual 93 (0.910x) (^ 0)
Testing all collisions (high 14..31 bits) - Worst is 24 bits: 1676/1628 (1.030x) (^ 0)
Testing all collisions (low 14..31 bits) - Worst is 19 bits: 45459/45335 (1.003x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 6.4, actual 9 (1.409x) (^ 2)
Testing all collisions (low 32-bit) - Expected 6.4, actual 2 (0.313x) (^ 0)
Testing all collisions (high 28-bit) - Expected 102.2, actual 99 (0.969x) (^ 0)
Testing all collisions (low 28-bit) - Expected 102.2, actual 86 (0.842x) (^ 0)
Testing all collisions (high 14..31 bits) - Worst is 23 bits: 3342/3240 (1.031x) (^ 0)
Testing all collisions (low 14..31 bits) - Worst is 19 bits: 45419/45335 (1.002x) (^ 0)
Keyset 'Sparse' - 2-byte keys with up to 10 bits set - 58651 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.4, actual 2 (4.994x) (^ 3)
Testing all collisions (low 32-bit) - Expected 0.4, actual 0 (0.000x) (^ 0)
Testing all collisions (high 24-bit) - Expected 102.4, actual 108 (1.055x) (^ 1)
Testing all collisions (low 24-bit) - Expected 102.4, actual 110 (1.074x) (^ 2)
Testing all collisions (high 12..27 bits) - Worst is 25 bits: 58/51 (1.132x) (^ 0)
Testing all collisions (low 12..27 bits) - Worst is 21 bits: 882/813 (1.085x) (^ 2)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 0.4, actual 1 (1.000x) (^ 1)
Testing all collisions (low 32-bit) - Expected 0.4, actual 0 (0.000x) (^ 0)
Testing all collisions (high 24-bit) - Expected 102.4, actual 87 (0.850x) (^ 0)
Testing all collisions (low 24-bit) - Expected 102.4, actual 88 (0.859x) (^ 0)
Testing all collisions (high 12..27 bits) - Worst is 13 bits: 50468/50465 (1.000x) (^ 0)
Testing all collisions (low 12..27 bits) - Worst is 19 bits: 3234/3162 (1.023x) (^ 0)
Keyset 'Sparse' - 3-byte keys with up to 20 bits set - 16774891 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 40-bit) - Expected 128.0, actual 114 (0.891x) (^ 0)
Testing all collisions (low 40-bit) - Expected 128.0, actual 124 (0.969x) (^ 0)
Testing all collisions (high 32-bit) - Expected 32716.3, actual 32827 (1.003x) (^ 1)
Testing all collisions (low 32-bit) - Expected 32716.3, actual 33044 (1.010x) (^ 4)
Testing all collisions (high 20..43 bits) - Worst is 34 bits: 8280/8187 (1.011x) (^ 0)
Testing all collisions (low 20..43 bits) - Worst is 35 bits: 4217/4094 (1.030x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 40-bit) - Expected 128.0, actual 140 (1.094x) (^ 2)
Testing all collisions (low 40-bit) - Expected 128.0, actual 136 (1.063x) (^ 1)
Testing all collisions (high 32-bit) - Expected 32716.3, actual 33004 (1.009x) (^ 4)
Testing all collisions (low 32-bit) - Expected 32716.3, actual 32828 (1.003x) (^ 1)
Testing all collisions (high 20..43 bits) - Worst is 37 bits: 1089/1024 (1.064x) (^ 1)
Testing all collisions (low 20..43 bits) - Worst is 37 bits: 1072/1024 (1.047x) (^ 0)
Keyset 'Sparse' - 4-byte keys with up to 9 bits set - 43081973 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 43-bit) - Expected 105.5, actual 118 (1.118x) (^ 2)
Testing all collisions (low 43-bit) - Expected 105.5, actual 106 (1.000x) (^ 1)
Testing all collisions (high 32-bit) - Expected 215352.7, actual 215816 (1.002x) (^ 2)
Testing all collisions (low 32-bit) - Expected 215352.7, actual 215101 (0.999x) (^ 0)
Testing all collisions (high 21..46 bits) - Worst is 42 bits: 252/211 (1.194x) (^ 3)
Testing all collisions (low 21..46 bits) - Worst is 27 bits: 6232246/6230297 (1.000x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 43-bit) - Expected 105.5, actual 124 (1.175x) (^ 4)
Testing all collisions (low 43-bit) - Expected 105.5, actual 102 (0.967x) (^ 0)
Testing all collisions (high 32-bit) - Expected 215352.7, actual 216186 (1.004x) (^ 4)
Testing all collisions (low 32-bit) - Expected 215352.7, actual 216245 (1.004x) (^ 5)
Testing all collisions (high 21..46 bits) - Worst is 45 bits: 42/26 (1.592x) (^ 3)
Testing all collisions (low 21..46 bits) - Worst is 33 bits: 108873/107856 (1.009x) (^ 5)
Keyset 'Sparse' - 5-byte keys with up to 7 bits set - 23242039 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 41-bit) - Expected 122.8, actual 139 (1.132x) (^ 3)
Testing all collisions (low 41-bit) - Expected 122.8, actual 139 (1.132x) (^ 3)
Testing all collisions (high 32-bit) - Expected 62773.4, actual 62283 (0.992x) (^ 0)
Testing all collisions (low 32-bit) - Expected 62773.4, actual 62837 (1.001x) (^ 1)
Testing all collisions (high 20..44 bits) - Worst is 41 bits: 139/123 (1.132x) (^ 0)
Testing all collisions (low 20..44 bits) - Worst is 41 bits: 139/123 (1.132x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 41-bit) - Expected 122.8, actual 145 (1.181x) (^ 5)
Testing all collisions (low 41-bit) - Expected 122.8, actual 114 (0.928x) (^ 0)
Testing all collisions (high 32-bit) - Expected 62773.4, actual 62948 (1.003x) (^ 2)
Testing all collisions (low 32-bit) - Expected 62773.4, actual 62194 (0.991x) (^ 0)
Testing all collisions (high 20..44 bits) - Worst is 42 bits: 81/61 (1.319x) (^ 2)
Testing all collisions (low 20..44 bits) - Worst is 36 bits: 3995/3930 (1.017x) (^ 0)
Keyset 'Sparse' - 6-byte keys with up to 7 bits set - 87825941 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 45-bit) - Expected 109.6, actual 100 (0.912x) (^ 0)
Testing all collisions (low 45-bit) - Expected 109.6, actual 101 (0.921x) (^ 0)
Testing all collisions (high 32-bit) - Expected 891868.0, actual 891321 (0.999x) (^ 0)
Testing all collisions (low 32-bit) - Expected 891868.0, actual 891333 (0.999x) (^ 0)
Testing all collisions (high 22..48 bits) - Worst is 43 bits: 447/438 (1.019x) (^ 0)
Testing all collisions (low 22..48 bits) - Worst is 48 bits: 17/14 (1.241x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 45-bit) - Expected 109.6, actual 109 (0.994x) (^ 0)
Testing all collisions (low 45-bit) - Expected 109.6, actual 122 (1.113x) (^ 2)
Testing all collisions (high 32-bit) - Expected 891868.0, actual 889835 (0.998x) (^ 0)
Testing all collisions (low 32-bit) - Expected 891868.0, actual 891616 (1.000x) (^ 0)
Testing all collisions (high 22..48 bits) - Worst is 39 bits: 7135/7015 (1.017x) (^ 0)
Testing all collisions (low 22..48 bits) - Worst is 46 bits: 71/55 (1.295x) (^ 1)
Keyset 'Sparse' - 7-byte keys with up to 6 bits set - 36684859 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 42-bit) - Expected 153.0, actual 147 (0.961x) (^ 0)
Testing all collisions (low 42-bit) - Expected 153.0, actual 177 (1.157x) (^ 4)
Testing all collisions (high 32-bit) - Expected 156224.2, actual 155980 (0.998x) (^ 0)
Testing all collisions (low 32-bit) - Expected 156224.2, actual 156264 (1.000x) (^ 1)
Testing all collisions (high 21..45 bits) - Worst is 39 bits: 1264/1224 (1.033x) (^ 0)
Testing all collisions (low 21..45 bits) - Worst is 39 bits: 1311/1224 (1.071x) (^ 2)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 42-bit) - Expected 153.0, actual 152 (0.993x) (^ 0)
Testing all collisions (low 42-bit) - Expected 153.0, actual 140 (0.915x) (^ 0)
Testing all collisions (high 32-bit) - Expected 156224.2, actual 155812 (0.997x) (^ 0)
Testing all collisions (low 32-bit) - Expected 156224.2, actual 156213 (1.000x) (^ 0)
Testing all collisions (high 21..45 bits) - Worst is 41 bits: 321/306 (1.049x) (^ 0)
Testing all collisions (low 21..45 bits) - Worst is 26 bits: 8427294/8424482 (1.000x) (^ 0)
Keyset 'Sparse' - 8-byte keys with up to 6 bits set - 83278001 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 44-bit) - Expected 197.1, actual 221 (1.121x) (^ 4)
Testing all collisions (low 44-bit) - Expected 197.1, actual 197 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 802173.5, actual 801115 (0.999x) (^ 0)
Testing all collisions (low 32-bit) - Expected 802173.5, actual 802440 (1.000x) (^ 1)
Testing all collisions (high 22..48 bits) - Worst is 42 bits: 850/788 (1.078x) (^ 1)
Testing all collisions (low 22..48 bits) - Worst is 31 bits: 1595446/1594061 (1.001x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 44-bit) - Expected 197.1, actual 203 (1.030x) (^ 1)
Testing all collisions (low 44-bit) - Expected 197.1, actual 204 (1.035x) (^ 1)
Testing all collisions (high 32-bit) - Expected 802173.5, actual 802692 (1.001x) (^ 1)
Testing all collisions (low 32-bit) - Expected 802173.5, actual 801445 (0.999x) (^ 0)
Testing all collisions (high 22..48 bits) - Worst is 31 bits: 1595875/1594061 (1.001x) (^ 0)
Testing all collisions (low 22..48 bits) - Worst is 46 bits: 65/49 (1.319x) (^ 1)
Keyset 'Sparse' - 9-byte keys with up to 5 bits set - 15082603 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 40-bit) - Expected 103.4, actual 98 (0.947x) (^ 0)
Testing all collisions (low 40-bit) - Expected 103.4, actual 89 (0.860x) (^ 0)
Testing all collisions (high 32-bit) - Expected 26451.8, actual 26462 (1.000x) (^ 1)
Testing all collisions (low 32-bit) - Expected 26451.8, actual 26882 (1.016x) (^ 7)
Testing all collisions (high 20..43 bits) - Worst is 30 bits: 106087/105437 (1.006x) (^ 1)
Testing all collisions (low 20..43 bits) - Worst is 34 bits: 6847/6619 (1.034x) (^ 3)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 40-bit) - Expected 103.4, actual 112 (1.083x) (^ 2)
Testing all collisions (low 40-bit) - Expected 103.4, actual 121 (1.170x) (^ 4)
Testing all collisions (high 32-bit) - Expected 26451.8, actual 26608 (1.006x) (^ 2)
Testing all collisions (low 32-bit) - Expected 26451.8, actual 26828 (1.014x) (^ 6)
Testing all collisions (high 20..43 bits) - Worst is 38 bits: 467/414 (1.129x) (^ 2)
Testing all collisions (low 20..43 bits) - Worst is 27 bits: 819441/816576 (1.004x) (^ 5)
Keyset 'Sparse' - 12-byte keys with up to 5 bits set - 64593561 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 44-bit) - Expected 118.6, actual 118 (0.995x) (^ 0)
Testing all collisions (low 44-bit) - Expected 118.6, actual 128 (1.079x) (^ 2)
Testing all collisions (high 32-bit) - Expected 483297.1, actual 482271 (0.998x) (^ 0)
Testing all collisions (low 32-bit) - Expected 483297.1, actual 483311 (1.000x) (^ 1)
Testing all collisions (high 22..47 bits) - Worst is 27 bits: 13332859/13322993 (1.001x) (^ 3)
Testing all collisions (low 22..47 bits) - Worst is 41 bits: 1007/949 (1.061x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 44-bit) - Expected 118.6, actual 110 (0.928x) (^ 0)
Testing all collisions (low 44-bit) - Expected 118.6, actual 117 (0.987x) (^ 0)
Testing all collisions (high 32-bit) - Expected 483297.1, actual 483094 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 483297.1, actual 483064 (1.000x) (^ 0)
Testing all collisions (high 22..47 bits) - Worst is 27 bits: 13326968/13322993 (1.000x) (^ 0)
Testing all collisions (low 22..47 bits) - Worst is 37 bits: 15290/15176 (1.007x) (^ 0)
Keyset 'Sparse' - 14-byte keys with up to 4 bits set - 6445069 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 37-bit) - Expected 151.1, actual 157 (1.039x) (^ 1)
Testing all collisions (low 37-bit) - Expected 151.1, actual 156 (1.032x) (^ 1)
Testing all collisions (high 32-bit) - Expected 4833.3, actual 4719 (0.976x) (^ 0)
Testing all collisions (low 32-bit) - Expected 4833.3, actual 4800 (0.993x) (^ 0)
Testing all collisions (high 18..40 bits) - Worst is 38 bits: 90/76 (1.191x) (^ 0)
Testing all collisions (low 18..40 bits) - Worst is 39 bits: 47/38 (1.244x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 37-bit) - Expected 151.1, actual 148 (0.979x) (^ 0)
Testing all collisions (low 37-bit) - Expected 151.1, actual 142 (0.940x) (^ 0)
Testing all collisions (high 32-bit) - Expected 4833.3, actual 4815 (0.996x) (^ 0)
Testing all collisions (low 32-bit) - Expected 4833.3, actual 4914 (1.017x) (^ 2)
Testing all collisions (high 18..40 bits) - Worst is 40 bits: 22/19 (1.165x) (^ 0)
Testing all collisions (low 18..40 bits) - Worst is 27 bits: 152906/152297 (1.004x) (^ 0)
Keyset 'Sparse' - 16-byte keys with up to 4 bits set - 11017633 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 39-bit) - Expected 110.4, actual 100 (0.906x) (^ 0)
Testing all collisions (low 39-bit) - Expected 110.4, actual 116 (1.051x) (^ 1)
Testing all collisions (high 32-bit) - Expected 14119.4, actual 14305 (1.013x) (^ 4)
Testing all collisions (low 32-bit) - Expected 14119.4, actual 14025 (0.993x) (^ 0)
Testing all collisions (high 19..42 bits) - Worst is 26 bits: 859262/856885 (1.003x) (^ 3)
Testing all collisions (low 19..42 bits) - Worst is 40 bits: 64/55 (1.159x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 39-bit) - Expected 110.4, actual 108 (0.978x) (^ 0)
Testing all collisions (low 39-bit) - Expected 110.4, actual 132 (1.196x) (^ 5)
Testing all collisions (high 32-bit) - Expected 14119.4, actual 14179 (1.004x) (^ 1)
Testing all collisions (low 32-bit) - Expected 14119.4, actual 14120 (1.000x) (^ 1)
Testing all collisions (high 19..42 bits) - Worst is 42 bits: 18/14 (1.304x) (^ 0)
Testing all collisions (low 19..42 bits) - Worst is 36 bits: 958/883 (1.085x) (^ 2)
Keyset 'Sparse' - 18-byte keys with up to 4 bits set - 17676661 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 40-bit) - Expected 142.1, actual 138 (0.971x) (^ 0)
Testing all collisions (low 40-bit) - Expected 142.1, actual 126 (0.887x) (^ 0)
Testing all collisions (high 32-bit) - Expected 36325.8, actual 35898 (0.988x) (^ 0)
Testing all collisions (low 32-bit) - Expected 36325.8, actual 36259 (0.998x) (^ 0)
Testing all collisions (high 20..43 bits) - Worst is 25 bits: 3935979/3935727 (1.000x) (^ 0)
Testing all collisions (low 20..43 bits) - Worst is 26 bits: 2138788/2136418 (1.001x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 40-bit) - Expected 142.1, actual 136 (0.957x) (^ 0)
Testing all collisions (low 40-bit) - Expected 142.1, actual 149 (1.049x) (^ 1)
Testing all collisions (high 32-bit) - Expected 36325.8, actual 36319 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 36325.8, actual 36086 (0.993x) (^ 0)
Testing all collisions (high 20..43 bits) - Worst is 39 bits: 297/284 (1.045x) (^ 0)
Testing all collisions (low 20..43 bits) - Worst is 43 bits: 28/18 (1.576x) (^ 1)
Keyset 'Sparse' - 24-byte keys with up to 4 bits set - 56050289 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 43-bit) - Expected 178.6, actual 181 (1.014x) (^ 1)
Testing all collisions (low 43-bit) - Expected 178.6, actual 174 (0.974x) (^ 0)
Testing all collisions (high 32-bit) - Expected 364148.6, actual 363792 (0.999x) (^ 0)
Testing all collisions (low 32-bit) - Expected 364148.6, actual 365035 (1.002x) (^ 3)
Testing all collisions (high 21..47 bits) - Worst is 46 bits: 31/22 (1.389x) (^ 0)
Testing all collisions (low 21..47 bits) - Worst is 37 bits: 11627/11428 (1.017x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 43-bit) - Expected 178.6, actual 172 (0.963x) (^ 0)
Testing all collisions (low 43-bit) - Expected 178.6, actual 190 (1.064x) (^ 2)
Testing all collisions (high 32-bit) - Expected 364148.6, actual 363055 (0.997x) (^ 0)
Testing all collisions (low 32-bit) - Expected 364148.6, actual 363688 (0.999x) (^ 0)
Testing all collisions (high 21..47 bits) - Worst is 40 bits: 1496/1429 (1.047x) (^ 0)
Testing all collisions (low 21..47 bits) - Worst is 44 bits: 108/89 (1.210x) (^ 0)
Keyset 'Sparse' - 26-byte keys with up to 4 bits set - 77260613 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 44-bit) - Expected 169.7, actual 164 (0.967x) (^ 0)
Testing all collisions (low 44-bit) - Expected 169.7, actual 149 (0.878x) (^ 0)
Testing all collisions (high 32-bit) - Expected 690758.5, actual 690722 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 690758.5, actual 690701 (1.000x) (^ 0)
Testing all collisions (high 22..48 bits) - Worst is 31 bits: 1373762/1373295 (1.000x) (^ 0)
Testing all collisions (low 22..48 bits) - Worst is 38 bits: 11008/10857 (1.014x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 44-bit) - Expected 169.7, actual 176 (1.037x) (^ 1)
Testing all collisions (low 44-bit) - Expected 169.7, actual 170 (1.000x) (^ 1)
Testing all collisions (high 32-bit) - Expected 690758.5, actual 692547 (1.003x) (^ 5)
Testing all collisions (low 32-bit) - Expected 690758.5, actual 690253 (0.999x) (^ 0)
Testing all collisions (high 22..48 bits) - Worst is 32 bits: 692547/690758 (1.003x) (^ 1)
Testing all collisions (low 22..48 bits) - Worst is 39 bits: 5534/5429 (1.019x) (^ 0)
Keyset 'Sparse' - 32-byte keys with up to 3 bits set - 2796417 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 35-bit) - Expected 113.8, actual 116 (1.019x) (^ 1)
Testing all collisions (low 35-bit) - Expected 113.8, actual 99 (0.870x) (^ 0)
Testing all collisions (high 32-bit) - Expected 910.2, actual 868 (0.954x) (^ 0)
Testing all collisions (low 32-bit) - Expected 910.2, actual 926 (1.017x) (^ 1)
Testing all collisions (high 17..38 bits) - Worst is 36 bits: 61/57 (1.072x) (^ 0)
Testing all collisions (low 17..38 bits) - Worst is 24 bits: 221274/220626 (1.003x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 35-bit) - Expected 113.8, actual 129 (1.134x) (^ 3)
Testing all collisions (low 35-bit) - Expected 113.8, actual 108 (0.949x) (^ 0)
Testing all collisions (high 32-bit) - Expected 910.2, actual 898 (0.987x) (^ 0)
Testing all collisions (low 32-bit) - Expected 910.2, actual 923 (1.014x) (^ 1)
Testing all collisions (high 17..38 bits) - Worst is 38 bits: 21/14 (1.476x) (^ 0)
Testing all collisions (low 17..38 bits) - Worst is 27 bits: 29230/28930 (1.010x) (^ 0)
Keyset 'Sparse' - 48-byte keys with up to 3 bits set - 9437505 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 38-bit) - Expected 162.0, actual 190 (1.173x) (^ 5)
Testing all collisions (low 38-bit) - Expected 162.0, actual 154 (0.951x) (^ 0)
Testing all collisions (high 32-bit) - Expected 10361.1, actual 10418 (1.005x) (^ 1)
Testing all collisions (low 32-bit) - Expected 10361.1, actual 10261 (0.990x) (^ 0)
Testing all collisions (high 19..42 bits) - Worst is 38 bits: 190/162 (1.173x) (^ 1)
Testing all collisions (low 19..42 bits) - Worst is 27 bits: 324987/324157 (1.003x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 38-bit) - Expected 162.0, actual 158 (0.975x) (^ 0)
Testing all collisions (low 38-bit) - Expected 162.0, actual 157 (0.969x) (^ 0)
Testing all collisions (high 32-bit) - Expected 10361.1, actual 10306 (0.995x) (^ 0)
Testing all collisions (low 32-bit) - Expected 10361.1, actual 10492 (1.013x) (^ 3)
Testing all collisions (high 19..42 bits) - Worst is 25 bits: 1213752/1211045 (1.002x) (^ 2)
Testing all collisions (low 19..42 bits) - Worst is 32 bits: 10492/10361 (1.013x) (^ 0)
Keyset 'Sparse' - 64-byte keys with up to 3 bits set - 22370049 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 41-bit) - Expected 113.8, actual 121 (1.063x) (^ 1)
Testing all collisions (low 41-bit) - Expected 113.8, actual 108 (0.949x) (^ 0)
Testing all collisions (high 32-bit) - Expected 58155.4, actual 58135 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 58155.4, actual 58139 (1.000x) (^ 0)
Testing all collisions (high 20..44 bits) - Worst is 36 bits: 3734/3641 (1.026x) (^ 0)
Testing all collisions (low 20..44 bits) - Worst is 30 bits: 232316/231416 (1.004x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 41-bit) - Expected 113.8, actual 119 (1.046x) (^ 1)
Testing all collisions (low 41-bit) - Expected 113.8, actual 105 (0.923x) (^ 0)
Testing all collisions (high 32-bit) - Expected 58155.4, actual 57677 (0.992x) (^ 0)
Testing all collisions (low 32-bit) - Expected 58155.4, actual 58387 (1.004x) (^ 2)
Testing all collisions (high 20..44 bits) - Worst is 44 bits: 20/14 (1.406x) (^ 0)
Testing all collisions (low 20..44 bits) - Worst is 26 bits: 3348916/3346481 (1.001x) (^ 0)
Keyset 'Sparse' - 96-byte keys with up to 3 bits set - 75498113 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 44-bit) - Expected 162.0, actual 205 (1.265x) (^10)
Testing all collisions (low 44-bit) - Expected 162.0, actual 156 (0.963x) (^ 0)
Testing all collisions (high 32-bit) - Expected 659692.2, actual 658757 (0.999x) (^ 0)
Testing all collisions (low 32-bit) - Expected 659692.2, actual 660069 (1.001x) (^ 1)
Testing all collisions (high 22..48 bits) - Worst is 44 bits: 205/162 (1.265x) (^ 5)
Testing all collisions (low 22..48 bits) - Worst is 32 bits: 660069/659692 (1.001x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 44-bit) - Expected 162.0, actual 138 (0.852x) (^ 0)
Testing all collisions (low 44-bit) - Expected 162.0, actual 156 (0.963x) (^ 0)
Testing all collisions (high 32-bit) - Expected 659692.2, actual 661647 (1.003x) (^ 6)
Testing all collisions (low 32-bit) - Expected 659692.2, actual 659007 (0.999x) (^ 0)
Testing all collisions (high 22..48 bits) - Worst is 32 bits: 661647/659692 (1.003x) (^ 2)
Testing all collisions (low 22..48 bits) - Worst is 25 bits: 45480893/45480224 (1.000x) (^ 0)
Keyset 'Sparse' - 128-byte keys with up to 2 bits set - 524801 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 32.1, actual 19 (0.593x) (^ 0)
Testing all collisions (low 32-bit) - Expected 32.1, actual 25 (0.780x) (^ 0)
Testing all collisions (high 30-bit) - Expected 128.2, actual 106 (0.827x) (^ 0)
Testing all collisions (low 30-bit) - Expected 128.2, actual 114 (0.889x) (^ 0)
Testing all collisions (high 15..33 bits) - Worst is 22 bits: 31562/31505 (1.002x) (^ 0)
Testing all collisions (low 15..33 bits) - Worst is 21 bits: 60880/60513 (1.006x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 32-bit) - Expected 32.1, actual 35 (1.092x) (^ 1)
Testing all collisions (low 32-bit) - Expected 32.1, actual 31 (0.967x) (^ 0)
Testing all collisions (high 30-bit) - Expected 128.2, actual 136 (1.061x) (^ 1)
Testing all collisions (low 30-bit) - Expected 128.2, actual 134 (1.045x) (^ 1)
Testing all collisions (high 15..33 bits) - Worst is 29 bits: 273/256 (1.065x) (^ 0)
Testing all collisions (low 15..33 bits) - Worst is 27 bits: 1107/1025 (1.080x) (^ 3)
Keyset 'Sparse' - 256-byte keys with up to 2 bits set - 2098177 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 34-bit) - Expected 128.1, actual 133 (1.038x) (^ 1)
Testing all collisions (low 34-bit) - Expected 128.1, actual 138 (1.077x) (^ 2)
Testing all collisions (high 32-bit) - Expected 512.4, actual 489 (0.954x) (^ 0)
Testing all collisions (low 32-bit) - Expected 512.4, actual 476 (0.929x) (^ 0)
Testing all collisions (high 17..37 bits) - Worst is 22 bits: 447566/447225 (1.001x) (^ 0)
Testing all collisions (low 17..37 bits) - Worst is 27 bits: 16580/16315 (1.016x) (^ 1)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 34-bit) - Expected 128.1, actual 132 (1.030x) (^ 1)
Testing all collisions (low 34-bit) - Expected 128.1, actual 155 (1.210x) (^ 6)
Testing all collisions (high 32-bit) - Expected 512.4, actual 506 (0.987x) (^ 0)
Testing all collisions (low 32-bit) - Expected 512.4, actual 495 (0.966x) (^ 0)
Testing all collisions (high 17..37 bits) - Worst is 34 bits: 132/128 (1.030x) (^ 0)
Testing all collisions (low 17..37 bits) - Worst is 34 bits: 155/128 (1.210x) (^ 2)
Keyset 'Sparse' - 512-byte keys with up to 2 bits set - 8390657 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 38-bit) - Expected 128.1, actual 138 (1.078x) (^ 2)
Testing all collisions (low 38-bit) - Expected 128.1, actual 122 (0.953x) (^ 0)
Testing all collisions (high 32-bit) - Expected 8190.7, actual 8229 (1.005x) (^ 1)
Testing all collisions (low 32-bit) - Expected 8190.7, actual 8325 (1.016x) (^ 3)
Testing all collisions (high 19..41 bits) - Worst is 35 bits: 1061/1024 (1.036x) (^ 0)
Testing all collisions (low 19..41 bits) - Worst is 32 bits: 8325/8191 (1.016x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 38-bit) - Expected 128.1, actual 125 (0.976x) (^ 0)
Testing all collisions (low 38-bit) - Expected 128.1, actual 139 (1.085x) (^ 2)
Testing all collisions (high 32-bit) - Expected 8190.7, actual 8148 (0.995x) (^ 0)
Testing all collisions (low 32-bit) - Expected 8190.7, actual 8224 (1.004x) (^ 1)
Testing all collisions (high 19..41 bits) - Worst is 26 bits: 503965/503349 (1.001x) (^ 0)
Testing all collisions (low 19..41 bits) - Worst is 35 bits: 1096/1024 (1.070x) (^ 1)
Keyset 'Sparse' - 1024-byte keys with up to 2 bits set - 33558529 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 42-bit) - Expected 128.0, actual 134 (1.047x) (^ 1)
Testing all collisions (low 42-bit) - Expected 128.0, actual 144 (1.125x) (^ 3)
Testing all collisions (high 32-bit) - Expected 130763.2, actual 130574 (0.999x) (^ 0)
Testing all collisions (low 32-bit) - Expected 130763.2, actual 130611 (0.999x) (^ 0)
Testing all collisions (high 21..45 bits) - Worst is 41 bits: 272/256 (1.062x) (^ 0)
Testing all collisions (low 21..45 bits) - Worst is 42 bits: 144/128 (1.125x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 42-bit) - Expected 128.0, actual 134 (1.047x) (^ 1)
Testing all collisions (low 42-bit) - Expected 128.0, actual 134 (1.047x) (^ 1)
Testing all collisions (high 32-bit) - Expected 130763.2, actual 131275 (1.004x) (^ 3)
Testing all collisions (low 32-bit) - Expected 130763.2, actual 131243 (1.004x) (^ 3)
Testing all collisions (high 21..45 bits) - Worst is 35 bits: 16607/16383 (1.014x) (^ 0)
Testing all collisions (low 21..45 bits) - Worst is 33 bits: 66003/65467 (1.008x) (^ 1)
Keyset 'Sparse' - 1280-byte keys with up to 2 bits set - 52433921 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 43-bit) - Expected 156.3, actual 163 (1.043x) (^ 1)
Testing all collisions (low 43-bit) - Expected 156.3, actual 146 (0.934x) (^ 0)
Testing all collisions (high 32-bit) - Expected 318764.0, actual 318783 (1.000x) (^ 1)
Testing all collisions (low 32-bit) - Expected 318764.0, actual 318967 (1.001x) (^ 1)
Testing all collisions (high 21..46 bits) - Worst is 28 bits: 4808149/4803236 (1.001x) (^ 1)
Testing all collisions (low 21..46 bits) - Worst is 34 bits: 80132/79934 (1.002x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 43-bit) - Expected 156.3, actual 165 (1.056x) (^ 1)
Testing all collisions (low 43-bit) - Expected 156.3, actual 152 (0.973x) (^ 0)
Testing all collisions (high 32-bit) - Expected 318764.0, actual 319384 (1.002x) (^ 2)
Testing all collisions (low 32-bit) - Expected 318764.0, actual 318726 (1.000x) (^ 0)
Testing all collisions (high 21..46 bits) - Worst is 29 bits: 2481656/2479139 (1.001x) (^ 0)
Testing all collisions (low 21..46 bits) - Worst is 33 bits: 160334/159706 (1.004x) (^ 0)
Keyset 'Sparse' - 1536-byte keys with up to 2 bits set - 75503617 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 44-bit) - Expected 162.0, actual 158 (0.975x) (^ 0)
Testing all collisions (low 44-bit) - Expected 162.0, actual 146 (0.901x) (^ 0)
Testing all collisions (high 32-bit) - Expected 659788.1, actual 659976 (1.000x) (^ 1)
Testing all collisions (low 32-bit) - Expected 659788.1, actual 658984 (0.999x) (^ 0)
Testing all collisions (high 22..48 bits) - Worst is 33 bits: 332018/330860 (1.004x) (^ 1)
Testing all collisions (low 22..48 bits) - Worst is 28 bits: 9693187/9689235 (1.000x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 44-bit) - Expected 162.0, actual 143 (0.883x) (^ 0)
Testing all collisions (low 44-bit) - Expected 162.0, actual 165 (1.018x) (^ 1)
Testing all collisions (high 32-bit) - Expected 659788.1, actual 660806 (1.002x) (^ 3)
Testing all collisions (low 32-bit) - Expected 659788.1, actual 661376 (1.002x) (^ 5)
Testing all collisions (high 22..48 bits) - Worst is 31 bits: 1313792/1311900 (1.001x) (^ 0)
Testing all collisions (low 22..48 bits) - Worst is 31 bits: 1314244/1311900 (1.002x) (^ 1)
Keyset 'Sparse' - 2048-byte keys with up to 2 bits set - 134225921 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 46-bit) - Expected 128.0, actual 148 (1.156x) (^ 4)
Testing all collisions (low 46-bit) - Expected 128.0, actual 123 (0.961x) (^ 0)
Testing all collisions (high 32-bit) - Expected 2075728.3, actual 2075709 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 2075728.3, actual 2076274 (1.000x) (^ 1)
Testing all collisions (high 23..49 bits) - Worst is 45 bits: 306/256 (1.195x) (^ 4)
Testing all collisions (low 23..49 bits) - Worst is 31 bits: 4111746/4108767 (1.001x) (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 46-bit) - Expected 128.0, actual 118 (0.922x) (^ 0)
Testing all collisions (low 46-bit) - Expected 128.0, actual 123 (0.961x) (^ 0)
Testing all collisions (high 32-bit) - Expected 2075728.3, actual 2075180 (1.000x) (^ 0)
Testing all collisions (low 32-bit) - Expected 2075728.3, actual 2076326 (1.000x) (^ 1)
Testing all collisions (high 23..49 bits) - Worst is 25 bits: 101286758/101285910 (1.000x) (^ 0)
Testing all collisions (low 23..49 bits) - Worst is 35 bits: 262711/261835 (1.003x) (^ 0)
[[[ Keyset 'Permutation' Tests ]]]
Keyset 'Combination 4-bytes [3 low bits; LE]' - up to 7 blocks from a set of 8 - 2396744 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 34-bit) - Expected 167.2, actual 160 (0.957x) (^ 0)
Testing all collisions (low 34-bit) - Expected 167.2, actual 185 (1.107x) (^ 3)
Testing all collisions (high 32-bit) - Expected 668.6, actual 649 (0.971x) (^ 0)
Testing all collisions (low 32-bit) - Expected 668.6, actual 663 (0.992x) (^ 0)
Testing all collisions (high 19..38 bits) - Worst is 31 bits: 1363/1337 (1.019x) (^ 0)
Testing all collisions (low 19..38 bits) - Worst is 34 bits: 185/167 (1.107x) (^ 0)
Testing distribution (any 8..18 bits) - Worst bias is 14 bits at bit 31: 0.546x (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 34-bit) - Expected 167.2, actual 164 (0.981x) (^ 0)
Testing all collisions (low 34-bit) - Expected 167.2, actual 163 (0.975x) (^ 0)
Testing all collisions (high 32-bit) - Expected 668.6, actual 659 (0.986x) (^ 0)
Testing all collisions (low 32-bit) - Expected 668.6, actual 655 (0.980x) (^ 0)
Testing all collisions (high 19..38 bits) - Worst is 21 bits: 968573/968388 (1.000x) (^ 0)
Testing all collisions (low 19..38 bits) - Worst is 38 bits: 14/10 (1.340x) (^ 0)
Testing distribution (any 8..18 bits) - Worst bias is 14 bits at bit 9: 0.506x (^ 0)
Keyset 'Combination 4-bytes [3 low bits; BE]' - up to 7 blocks from a set of 8 - 2396744 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 34-bit) - Expected 167.2, actual 168 (1.005x) (^ 1)
Testing all collisions (low 34-bit) - Expected 167.2, actual 169 (1.011x) (^ 1)
Testing all collisions (high 32-bit) - Expected 668.6, actual 669 (1.000x) (^ 1)
Testing all collisions (low 32-bit) - Expected 668.6, actual 648 (0.969x) (^ 0)
Testing all collisions (high 19..38 bits) - Worst is 33 bits: 348/334 (1.041x) (^ 0)
Testing all collisions (low 19..38 bits) - Worst is 38 bits: 15/10 (1.436x) (^ 0)
Testing distribution (any 8..18 bits) - Worst bias is 17 bits at bit 37: 0.500x (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 34-bit) - Expected 167.2, actual 150 (0.897x) (^ 0)
Testing all collisions (low 34-bit) - Expected 167.2, actual 171 (1.023x) (^ 1)
Testing all collisions (high 32-bit) - Expected 668.6, actual 663 (0.992x) (^ 0)
Testing all collisions (low 32-bit) - Expected 668.6, actual 642 (0.960x) (^ 0)
Testing all collisions (high 19..38 bits) - Worst is 36 bits: 46/42 (1.101x) (^ 0)
Testing all collisions (low 19..38 bits) - Worst is 35 bits: 97/84 (1.160x) (^ 0)
Testing distribution (any 8..18 bits) - Worst bias is 9 bits at bit 11: 0.714x (^ 0)
Keyset 'Combination 4-bytes [3 high bits; LE]' - up to 7 blocks from a set of 8 - 2396744 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 34-bit) - Expected 167.2, actual 144 (0.861x) (^ 0)
Testing all collisions (low 34-bit) - Expected 167.2, actual 161 (0.963x) (^ 0)
Testing all collisions (high 32-bit) - Expected 668.6, actual 640 (0.957x) (^ 0)
Testing all collisions (low 32-bit) - Expected 668.6, actual 649 (0.971x) (^ 0)
Testing all collisions (high 19..38 bits) - Worst is 26 bits: 42654/42294 (1.009x) (^ 0)
Testing all collisions (low 19..38 bits) - Worst is 31 bits: 1368/1337 (1.023x) (^ 0)
Testing distribution (any 8..18 bits) - Worst bias is 17 bits at bit 6: 0.460x (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 34-bit) - Expected 167.2, actual 175 (1.047x) (^ 1)
Testing all collisions (low 34-bit) - Expected 167.2, actual 162 (0.969x) (^ 0)
Testing all collisions (high 32-bit) - Expected 668.6, actual 643 (0.962x) (^ 0)
Testing all collisions (low 32-bit) - Expected 668.6, actual 683 (1.022x) (^ 1)
Testing all collisions (high 19..38 bits) - Worst is 24 bits: 164070/163327 (1.005x) (^ 1)
Testing all collisions (low 19..38 bits) - Worst is 37 bits: 28/21 (1.340x) (^ 0)
Testing distribution (any 8..18 bits) - Worst bias is 14 bits at bit 38: 0.487x (^ 0)
Keyset 'Combination 4-bytes [3 high bits; BE]' - up to 7 blocks from a set of 8 - 2396744 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 34-bit) - Expected 167.2, actual 151 (0.903x) (^ 0)
Testing all collisions (low 34-bit) - Expected 167.2, actual 175 (1.047x) (^ 1)
Testing all collisions (high 32-bit) - Expected 668.6, actual 688 (1.029x) (^ 2)
Testing all collisions (low 32-bit) - Expected 668.6, actual 732 (1.095x) (^ 6)
Testing all collisions (high 19..38 bits) - Worst is 32 bits: 688/669 (1.029x) (^ 0)
Testing all collisions (low 19..38 bits) - Worst is 32 bits: 732/669 (1.095x) (^ 2)
Testing distribution (any 8..18 bits) - Worst bias is 13 bits at bit 15: 0.452x (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 34-bit) - Expected 167.2, actual 149 (0.891x) (^ 0)
Testing all collisions (low 34-bit) - Expected 167.2, actual 157 (0.939x) (^ 0)
Testing all collisions (high 32-bit) - Expected 668.6, actual 636 (0.951x) (^ 0)
Testing all collisions (low 32-bit) - Expected 668.6, actual 680 (1.017x) (^ 1)
Testing all collisions (high 19..38 bits) - Worst is 25 bits: 83963/83596 (1.004x) (^ 0)
Testing all collisions (low 19..38 bits) - Worst is 28 bits: 10808/10668 (1.013x) (^ 0)
Testing distribution (any 8..18 bits) - Worst bias is 16 bits at bit 39: 0.514x (^ 0)
Keyset 'Combination 4-bytes [3 high+low bits; LE]' - up to 6 blocks from a set of 15 - 12204240 keys
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 39-bit) - Expected 135.5, actual 127 (0.938x) (^ 0)
Testing all collisions (low 39-bit) - Expected 135.5, actual 150 (1.107x) (^ 3)
Testing all collisions (high 32-bit) - Expected 17322.9, actual 17437 (1.007x) (^ 2)
Testing all collisions (low 32-bit) - Expected 17322.9, actual 17464 (1.008x) (^ 2)
Testing all collisions (high 22..42 bits) - Worst is 36 bits: 1149/1084 (1.060x) (^ 1)
Testing all collisions (low 22..42 bits) - Worst is 39 bits: 150/135 (1.107x) (^ 0)
Testing distribution (any 8..21 bits) - Worst bias is 14 bits at bit 45: 0.582x (^ 0)
---Analyzing differential distribution
Testing all collisions ( 64-bit) - Expected 0.0, actual 0 (1.000x) (^ 0)
Testing all collisions (high 39-bit) - Expected 135.5, actual 139 (1.026x) (^ 1)
Testing all collisions (low 39-bit) - Expected 135.5, actual 138 (1.019x) (^ 1)
Testing all collisions (high 32-bit) - Expected 17322.9, actual 17119 (0.988x) (^ 0)
Testing all collisions (low 32-bit) - Expected 17322.9, actual 17378 (1.003x) (^ 1)