-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbench_info.txt
More file actions
1570 lines (1534 loc) · 77.4 KB
/
bench_info.txt
File metadata and controls
1570 lines (1534 loc) · 77.4 KB
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
running 9 tests
test compress::matchfinder::tests::test_bt_match_overflow ... ignored
test compress::matchfinder::tests::test_ht_match_overflow ... ignored
test compress::matchfinder::tests::test_match_finder_consistency ... ignored
test compress::matchfinder::tests::test_match_len_avx10_explicit ... ignored
test compress::matchfinder::tests::test_match_len_avx2_explicit ... ignored
test compress::matchfinder::tests::test_match_len_avx2_tail_overlap ... ignored
test compress::matchfinder::tests::test_match_len_selection ... ignored
test compress::matchfinder::tests::test_match_len_sse2_explicit ... ignored
test compress::matchfinder::tests::test_skip_match_overflow ... ignored
test result: ok. 0 passed; 0 failed; 9 ignored; 0 measured; 0 filtered out; finished in 0.00s
Running benches\bench_main.rs (target\release\deps\bench_main-f7ce382c8f21c5ca.exe)
Gnuplot not found, using plotters backend
Compress Level 10 Large/libdeflate-rs level 10
time: [5.6898 ms 5.7375 ms 5.7883 ms]
thrpt: [172.76 MiB/s 174.29 MiB/s 175.75 MiB/s]
Found 5 outliers among 100 measurements (5.00%)
4 (4.00%) high mild
1 (1.00%) high severe
Compress Level 6 Large/libdeflate-rs level 6
time: [494.74 µs 508.64 µs 524.63 µs]
thrpt: [1.8614 GiB/s 1.9200 GiB/s 1.9739 GiB/s]
CRC32 Large/libdeflate-rs/16777216
time: [323.15 µs 329.46 µs 336.52 µs]
thrpt: [46.432 GiB/s 47.427 GiB/s 48.353 GiB/s]
change:
time: [-21.994% -19.069% -16.183%] (p = 0.00 < 0.05)
thrpt: [+19.308% +23.561% +28.196%]
Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
3 (3.00%) high mild
2 (2.00%) high severe
CRC32 Large/libdeflater/16777216
time: [566.95 µs 575.64 µs 584.54 µs]
thrpt: [26.731 GiB/s 27.144 GiB/s 27.560 GiB/s]
change:
time: [-11.231% -9.4997% -7.7847%] (p = 0.00 < 0.05)
thrpt: [+8.4419% +10.497% +12.652%]
Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
2 (2.00%) high mild
Bitstream Micro/write_bits_upto_32 (28 bits)
time: [161.12 µs 161.86 µs 162.61 µs]
thrpt: [6.0054 GiB/s 6.0335 GiB/s 6.0611 GiB/s]
change:
time: [-3.3194% -2.1014% -0.8776%] (p = 0.00 < 0.05)
thrpt: [+0.8853% +2.1465% +3.4333%]
Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
10 (10.00%) high mild
Bitstream Micro/write_bits (13 bits)
time: [336.29 µs 340.09 µs 344.19 µs]
thrpt: [2.8373 GiB/s 2.8714 GiB/s 2.9039 GiB/s]
change:
time: [-1.3909% -0.0313% +1.2268%] (p = 0.96 > 0.05)
thrpt: [-1.2119% +0.0313% +1.4105%]
No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
5 (5.00%) high mild
Compress Micro/libdeflate-rs level 6
time: [242.95 µs 245.42 µs 248.18 µs]
thrpt: [1007.3 MiB/s 1018.7 MiB/s 1.0049 GiB/s]
change:
time: [-5.8934% -4.7889% -3.6650%] (p = 0.00 < 0.05)
thrpt: [+3.8044% +5.0298% +6.2625%]
Performance has improved.
Compress Alloc/libdeflate-rs compress_deflate/16777216
time: [2.4373 ms 2.4541 ms 2.4719 ms]
thrpt: [6.3209 GiB/s 6.3670 GiB/s 6.4107 GiB/s]
Found 2 outliers among 100 measurements (2.00%)
1 (1.00%) high mild
1 (1.00%) high severe
Decompress offset10 Micro/libdeflate-rs offset10 micro
time: [1.2498 µs 1.2553 µs 1.2610 µs]
thrpt: [151.26 MiB/s 151.95 MiB/s 152.61 MiB/s]
change:
time: [-3.8671% -2.9198% -1.9499%] (p = 0.00 < 0.05)
thrpt: [+1.9886% +3.0076% +4.0227%]
Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
1 (1.00%) high mild
2 (2.00%) high severe
Decompress offset40 Micro/libdeflate-rs offset40 micro
time: [45.604 µs 46.614 µs 47.636 µs]
thrpt: [20.501 GiB/s 20.950 GiB/s 21.414 GiB/s]
change:
time: [-32.681% -30.855% -28.902%] (p = 0.00 < 0.05)
thrpt: [+40.652% +44.623% +48.547%]
Performance has improved.
Decompress offset17 Micro/libdeflate-rs offset17 micro
time: [1.3039 µs 1.3184 µs 1.3341 µs]
thrpt: [142.97 MiB/s 144.67 MiB/s 146.28 MiB/s]
change:
time: [-4.3519% -3.3265% -2.3001%] (p = 0.00 < 0.05)
thrpt: [+2.3542% +3.4409% +4.5499%]
Performance has improved.
Decompress offset17 Tail/libdeflate-rs offset17 tail
time: [1.2571 µs 1.2689 µs 1.2809 µs]
thrpt: [47.650 MiB/s 48.101 MiB/s 48.551 MiB/s]
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Decompress offset18 Micro/libdeflate-rs offset18 micro
time: [51.362 µs 53.958 µs 57.528 µs]
thrpt: [16.975 GiB/s 18.099 GiB/s 19.013 GiB/s]
change:
time: [+41.120% +46.095% +51.892%] (p = 0.00 < 0.05)
thrpt: [-34.164% -31.551% -29.138%]
Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
5 (5.00%) high mild
2 (2.00%) high severe
Decompress offset26 Micro/libdeflate-rs offset26 micro
time: [48.866 µs 49.823 µs 50.809 µs]
thrpt: [19.220 GiB/s 19.601 GiB/s 19.984 GiB/s]
change:
time: [-1.0656% +1.1063% +3.0507%] (p = 0.29 > 0.05)
thrpt: [-2.9604% -1.0942% +1.0771%]
No change in performance detected.
CRC32 Slice8/libdeflate-rs slice8
time: [5.4689 ms 5.5020 ms 5.5365 ms]
thrpt: [2.8222 GiB/s 2.8399 GiB/s 2.8571 GiB/s]
change:
time: [-29.742% -29.180% -28.589%] (p = 0.00 < 0.05)
thrpt: [+40.035% +41.204% +42.333%]
Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Checksums/Adler32/libdeflate-rs XXS/1024
time: [18.000 ns 18.152 ns 18.315 ns]
thrpt: [52.070 GiB/s 52.537 GiB/s 52.982 GiB/s]
change:
time: [+9.2592% +11.553% +14.045%] (p = 0.00 < 0.05)
thrpt: [-12.315% -10.357% -8.4745%]
Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
4 (4.00%) high severe
Checksums/Adler32/libdeflater XXS/1024
time: [16.284 ns 16.707 ns 17.240 ns]
thrpt: [55.317 GiB/s 57.082 GiB/s 58.566 GiB/s]
change:
time: [-2.4521% -0.6987% +1.2577%] (p = 0.48 > 0.05)
thrpt: [-1.2421% +0.7037% +2.5137%]
No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
2 (2.00%) high mild
2 (2.00%) high severe
Checksums/Adler32/libdeflate-rs S/65536
time: [993.32 ns 1.0613 µs 1.1338 µs]
thrpt: [53.834 GiB/s 57.512 GiB/s 61.446 GiB/s]
change:
time: [+7.9630% +12.375% +17.932%] (p = 0.00 < 0.05)
thrpt: [-15.205% -11.012% -7.3757%]
Performance has regressed.
Found 11 outliers among 100 measurements (11.00%)
1 (1.00%) high mild
10 (10.00%) high severe
Checksums/Adler32/libdeflater S/65536
time: [960.49 ns 988.51 ns 1.0223 µs]
thrpt: [59.705 GiB/s 61.744 GiB/s 63.546 GiB/s]
change:
time: [+15.004% +18.238% +21.686%] (p = 0.00 < 0.05)
thrpt: [-17.821% -15.425% -13.047%]
Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
3 (3.00%) high mild
2 (2.00%) high severe
Checksums/Adler32/libdeflate-rs L/16777216
time: [542.77 µs 577.75 µs 611.65 µs]
thrpt: [25.546 GiB/s 27.044 GiB/s 28.788 GiB/s]
change:
time: [+23.501% +31.041% +38.861%] (p = 0.00 < 0.05)
thrpt: [-27.986% -23.688% -19.029%]
Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Checksums/Adler32/libdeflater L/16777216
time: [583.43 µs 612.63 µs 643.90 µs]
thrpt: [24.266 GiB/s 25.505 GiB/s 26.781 GiB/s]
change:
time: [+53.832% +60.880% +68.883%] (p = 0.00 < 0.05)
thrpt: [-40.787% -37.842% -34.994%]
Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
2 (2.00%) high mild
Checksums/CRC32/libdeflate-rs
time: [379.71 µs 398.52 µs 419.23 µs]
thrpt: [37.271 GiB/s 39.207 GiB/s 41.149 GiB/s]
change:
time: [+1.6043% +6.5592% +12.099%] (p = 0.01 < 0.05)
thrpt: [-10.793% -6.1554% -1.5790%]
Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
4 (4.00%) high mild
Checksums/CRC32/libdeflater
time: [597.22 µs 607.00 µs 616.87 µs]
thrpt: [25.329 GiB/s 25.741 GiB/s 26.163 GiB/s]
change:
time: [-13.089% -9.7914% -6.5125%] (p = 0.00 < 0.05)
thrpt: [+6.9662% +10.854% +15.060%]
Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
4 (4.00%) high mild
1 (1.00%) high severe
Compress/libdeflate-rs XXS Level 1/1024
time: [351.85 ns 353.56 ns 355.29 ns]
thrpt: [2.6842 GiB/s 2.6974 GiB/s 2.7105 GiB/s]
change:
time: [-81.457% -81.284% -81.095%] (p = 0.00 < 0.05)
thrpt: [+428.96% +434.29% +439.29%]
Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
3 (3.00%) high mild
3 (3.00%) high severe
Compress/libdeflater XXS Level 1/1024
time: [4.5768 µs 4.6005 µs 4.6243 µs]
thrpt: [211.18 MiB/s 212.27 MiB/s 213.37 MiB/s]
change:
time: [-6.0162% -4.7804% -3.6438%] (p = 0.00 < 0.05)
thrpt: [+3.7815% +5.0204% +6.4013%]
Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
4 (4.00%) high mild
Compress/libdeflate-rs XXS Level 6/1024
time: [3.6906 µs 3.7109 µs 3.7328 µs]
thrpt: [261.62 MiB/s 263.16 MiB/s 264.61 MiB/s]
change:
time: [-7.2138% -5.9016% -4.5028%] (p = 0.00 < 0.05)
thrpt: [+4.7151% +6.2717% +7.7746%]
Performance has improved.
Found 11 outliers among 100 measurements (11.00%)
6 (6.00%) high mild
5 (5.00%) high severe
Compress/libdeflater XXS Level 6/1024
time: [6.3731 µs 6.4141 µs 6.4582 µs]
thrpt: [151.21 MiB/s 152.25 MiB/s 153.23 MiB/s]
change:
time: [-1.4587% -0.7477% -0.0267%] (p = 0.06 > 0.05)
thrpt: [+0.0267% +0.7533% +1.4802%]
No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
4 (4.00%) high mild
Compress/libdeflate-rs XXS Level 9/1024
time: [3.7456 µs 3.7794 µs 3.8152 µs]
thrpt: [255.96 MiB/s 258.39 MiB/s 260.72 MiB/s]
change:
time: [-9.1598% -8.2854% -7.3426%] (p = 0.00 < 0.05)
thrpt: [+7.9245% +9.0339% +10.083%]
Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
3 (3.00%) high mild
Compress/libdeflater XXS Level 9/1024
time: [6.3286 µs 6.3781 µs 6.4382 µs]
thrpt: [151.68 MiB/s 153.11 MiB/s 154.31 MiB/s]
change:
time: [-5.5330% -4.6989% -3.8287%] (p = 0.00 < 0.05)
thrpt: [+3.9811% +4.9306% +5.8570%]
Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
1 (1.00%) high mild
1 (1.00%) high severe
Compress/libdeflate-rs XXS Level 10/1024
time: [30.056 µs 30.204 µs 30.349 µs]
thrpt: [32.178 MiB/s 32.333 MiB/s 32.491 MiB/s]
change:
time: [-44.695% -44.130% -43.610%] (p = 0.00 < 0.05)
thrpt: [+77.336% +78.988% +80.815%]
Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Compress/libdeflater XXS Level 10/1024
time: [22.892 µs 23.145 µs 23.402 µs]
thrpt: [41.730 MiB/s 42.193 MiB/s 42.659 MiB/s]
change:
time: [+2.2829% +3.5857% +4.9559%] (p = 0.00 < 0.05)
thrpt: [-4.7219% -3.4616% -2.2319%]
Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Compress/libdeflate-rs XS Level 1/4096
time: [493.87 ns 499.45 ns 505.17 ns]
thrpt: [7.5513 GiB/s 7.6378 GiB/s 7.7241 GiB/s]
change:
time: [-76.942% -76.641% -76.324%] (p = 0.00 < 0.05)
thrpt: [+322.37% +328.10% +333.68%]
Performance has improved.
Compress/libdeflater XS Level 1/4096
time: [6.1645 µs 6.1937 µs 6.2241 µs]
thrpt: [627.60 MiB/s 630.68 MiB/s 633.66 MiB/s]
change:
time: [-3.8295% -2.9715% -2.0966%] (p = 0.00 < 0.05)
thrpt: [+2.1415% +3.0625% +3.9820%]
Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
1 (1.00%) high mild
3 (3.00%) high severe
Compress/libdeflate-rs XS Level 6/4096
time: [6.5180 µs 6.5609 µs 6.6125 µs]
thrpt: [590.73 MiB/s 595.38 MiB/s 599.30 MiB/s]
change:
time: [-2.8557% -1.7737% -0.6604%] (p = 0.00 < 0.05)
thrpt: [+0.6648% +1.8058% +2.9397%]
Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
5 (5.00%) high mild
3 (3.00%) high severe
Compress/libdeflater XS Level 6/4096
time: [10.416 µs 10.477 µs 10.541 µs]
thrpt: [370.58 MiB/s 372.84 MiB/s 375.04 MiB/s]
change:
time: [-2.1599% -1.3652% -0.6143%] (p = 0.00 < 0.05)
thrpt: [+0.6181% +1.3841% +2.2076%]
Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
2 (2.00%) high mild
1 (1.00%) high severe
Compress/libdeflate-rs XS Level 9/4096
time: [6.5800 µs 6.6151 µs 6.6528 µs]
thrpt: [587.16 MiB/s 590.50 MiB/s 593.65 MiB/s]
change:
time: [-0.6676% +0.4598% +1.7370%] (p = 0.48 > 0.05)
thrpt: [-1.7074% -0.4577% +0.6721%]
No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
6 (6.00%) high mild
2 (2.00%) high severe
Compress/libdeflater XS Level 9/4096
time: [10.746 µs 10.793 µs 10.843 µs]
thrpt: [360.25 MiB/s 361.91 MiB/s 363.50 MiB/s]
change:
time: [+3.3764% +4.4891% +5.6288%] (p = 0.00 < 0.05)
thrpt: [-5.3289% -4.2962% -3.2661%]
Performance has regressed.
Found 10 outliers among 100 measurements (10.00%)
7 (7.00%) high mild
3 (3.00%) high severe
Compress/libdeflate-rs XS Level 10/4096
time: [79.153 µs 79.625 µs 80.135 µs]
thrpt: [48.746 MiB/s 49.058 MiB/s 49.350 MiB/s]
change:
time: [-43.895% -43.327% -42.716%] (p = 0.00 < 0.05)
thrpt: [+74.570% +76.451% +78.237%]
Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
1 (1.00%) high mild
1 (1.00%) high severe
Compress/libdeflater XS Level 10/4096
time: [48.950 µs 49.183 µs 49.448 µs]
thrpt: [78.997 MiB/s 79.423 MiB/s 79.800 MiB/s]
change:
time: [-0.1302% +0.8741% +1.8828%] (p = 0.10 > 0.05)
thrpt: [-1.8480% -0.8665% +0.1304%]
No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
3 (3.00%) high mild
3 (3.00%) high severe
Compress/libdeflate-rs S Level 1/65536
time: [3.0646 µs 3.0885 µs 3.1120 µs]
thrpt: [19.613 GiB/s 19.762 GiB/s 19.916 GiB/s]
change:
time: [-33.551% -32.912% -32.235%] (p = 0.00 < 0.05)
thrpt: [+47.569% +49.058% +50.492%]
Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Compress/libdeflater S Level 1/65536
time: [42.355 µs 42.968 µs 43.580 µs]
thrpt: [1.4005 GiB/s 1.4205 GiB/s 1.4410 GiB/s]
change:
time: [+1.8998% +2.9600% +4.0338%] (p = 0.00 < 0.05)
thrpt: [-3.8774% -2.8749% -1.8644%]
Performance has regressed.
Compress/libdeflate-rs S Level 6/65536
time: [61.964 µs 62.418 µs 62.959 µs]
thrpt: [992.70 MiB/s 1001.3 MiB/s 1008.7 MiB/s]
change:
time: [-8.1619% -7.1821% -6.1980%] (p = 0.00 < 0.05)
thrpt: [+6.6075% +7.7379% +8.8873%]
Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Compress/libdeflater S Level 6/65536
time: [79.863 µs 80.240 µs 80.625 µs]
thrpt: [775.19 MiB/s 778.91 MiB/s 782.59 MiB/s]
change:
time: [-1.4564% -0.6757% +0.0696%] (p = 0.09 > 0.05)
thrpt: [-0.0695% +0.6803% +1.4779%]
No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
3 (3.00%) high mild
Compress/libdeflate-rs S Level 9/65536
time: [61.628 µs 62.078 µs 62.568 µs]
thrpt: [998.92 MiB/s 1006.8 MiB/s 1014.2 MiB/s]
change:
time: [-6.6801% -5.8277% -5.0112%] (p = 0.00 < 0.05)
thrpt: [+5.2755% +6.1883% +7.1583%]
Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
2 (2.00%) low mild
3 (3.00%) high mild
1 (1.00%) high severe
Compress/libdeflater S Level 9/65536
time: [79.792 µs 80.204 µs 80.647 µs]
thrpt: [774.98 MiB/s 779.27 MiB/s 783.29 MiB/s]
change:
time: [-1.3790% -0.3996% +0.4932%] (p = 0.42 > 0.05)
thrpt: [-0.4908% +0.4012% +1.3982%]
No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
4 (4.00%) high mild
Benchmarking Compress/libdeflate-rs S Level 10/65536: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.2s, enable flat sampling, or reduce sample count to 60.
Compress/libdeflate-rs S Level 10/65536
time: [1.0583 ms 1.0658 ms 1.0731 ms]
thrpt: [58.243 MiB/s 58.640 MiB/s 59.058 MiB/s]
change:
time: [-43.345% -42.825% -42.259%] (p = 0.00 < 0.05)
thrpt: [+73.188% +74.903% +76.508%]
Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
2 (2.00%) high mild
Compress/libdeflater S Level 10/65536
time: [583.16 µs 588.09 µs 593.32 µs]
thrpt: [105.34 MiB/s 106.28 MiB/s 107.17 MiB/s]
change:
time: [+0.9504% +2.3382% +3.7745%] (p = 0.00 < 0.05)
thrpt: [-3.6372% -2.2848% -0.9415%]
Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
4 (4.00%) high mild
3 (3.00%) high severe
Compress/libdeflate-rs M Level 1/1048576
time: [69.336 µs 69.838 µs 70.449 µs]
thrpt: [13.862 GiB/s 13.983 GiB/s 14.084 GiB/s]
change:
time: [-7.6874% -6.4011% -5.1268%] (p = 0.00 < 0.05)
thrpt: [+5.4038% +6.8389% +8.3275%]
Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high severe
Compress/libdeflater M Level 1/1048576
time: [642.95 µs 646.84 µs 650.98 µs]
thrpt: [1.5001 GiB/s 1.5098 GiB/s 1.5189 GiB/s]
change:
time: [-5.0672% -3.8126% -2.5762%] (p = 0.00 < 0.05)
thrpt: [+2.6443% +3.9637% +5.3377%]
Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
3 (3.00%) high mild
Compress/libdeflate-rs M Level 6/1048576
time: [427.63 µs 431.09 µs 434.75 µs]
thrpt: [2.2463 GiB/s 2.2653 GiB/s 2.2836 GiB/s]
change:
time: [-12.350% -10.414% -8.5156%] (p = 0.00 < 0.05)
thrpt: [+9.3083% +11.625% +14.090%]
Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
1 (1.00%) low severe
1 (1.00%) high mild
1 (1.00%) high severe
Benchmarking Compress/libdeflater M Level 6/1048576: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.3s, enable flat sampling, or reduce sample count to 60.
Compress/libdeflater M Level 6/1048576
time: [1.2322 ms 1.2379 ms 1.2440 ms]
thrpt: [803.86 MiB/s 807.80 MiB/s 811.55 MiB/s]
change:
time: [-8.0415% -6.9062% -5.7368%] (p = 0.00 < 0.05)
thrpt: [+6.0860% +7.4186% +8.7446%]
Performance has improved.
Found 6 outliers among 100 measurements (6.00%)
5 (5.00%) high mild
1 (1.00%) high severe
Compress/libdeflate-rs M Level 9/1048576
time: [514.34 µs 524.26 µs 532.47 µs]
thrpt: [1.8340 GiB/s 1.8628 GiB/s 1.8987 GiB/s]
change:
time: [+2.7362% +5.5772% +8.2229%] (p = 0.00 < 0.05)
thrpt: [-7.5981% -5.2826% -2.6633%]
Performance has regressed.
Benchmarking Compress/libdeflater M Level 9/1048576: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.4s, enable flat sampling, or reduce sample count to 60.
Compress/libdeflater M Level 9/1048576
time: [1.2356 ms 1.2397 ms 1.2438 ms]
thrpt: [803.96 MiB/s 806.66 MiB/s 809.33 MiB/s]
change:
time: [-1.7209% -0.4423% +0.7346%] (p = 0.51 > 0.05)
thrpt: [-0.7293% +0.4443% +1.7510%]
No change in performance detected.
Found 12 outliers among 100 measurements (12.00%)
5 (5.00%) high mild
7 (7.00%) high severe
Compress/libdeflate-rs M Level 10/1048576
time: [5.4656 ms 5.4994 ms 5.5347 ms]
thrpt: [180.68 MiB/s 181.84 MiB/s 182.96 MiB/s]
change:
time: [-41.116% -40.427% -39.737%] (p = 0.00 < 0.05)
thrpt: [+65.938% +67.861% +69.824%]
Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
3 (3.00%) high mild
Compress/libdeflater M Level 10/1048576
time: [9.3700 ms 9.4257 ms 9.4839 ms]
thrpt: [105.44 MiB/s 106.09 MiB/s 106.72 MiB/s]
change:
time: [-1.0535% -0.3319% +0.4066%] (p = 0.37 > 0.05)
thrpt: [-0.4050% +0.3330% +1.0647%]
No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
3 (3.00%) high mild
Benchmarking Compress/libdeflate-rs L Level 1/16777216: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.3s, enable flat sampling, or reduce sample count to 60.
Compress/libdeflate-rs L Level 1/16777216
time: [1.0742 ms 1.0804 ms 1.0868 ms]
thrpt: [14.377 GiB/s 14.463 GiB/s 14.546 GiB/s]
change:
time: [-17.520% -16.441% -15.281%] (p = 0.00 < 0.05)
thrpt: [+18.037% +19.676% +21.241%]
Performance has improved.
Found 7 outliers among 100 measurements (7.00%)
1 (1.00%) low severe
3 (3.00%) low mild
1 (1.00%) high mild
2 (2.00%) high severe
Compress/libdeflater L Level 1/16777216
time: [10.798 ms 10.911 ms 11.026 ms]
thrpt: [1.4172 GiB/s 1.4321 GiB/s 1.4471 GiB/s]
change:
time: [-11.899% -8.7460% -5.6030%] (p = 0.00 < 0.05)
thrpt: [+5.9355% +9.5843% +13.507%]
Performance has improved.
Compress/libdeflate-rs L Level 6/16777216
time: [2.9117 ms 2.9433 ms 2.9749 ms]
thrpt: [5.2522 GiB/s 5.3087 GiB/s 5.3663 GiB/s]
change:
time: [+0.4506% +1.8472% +3.2643%] (p = 0.01 < 0.05)
thrpt: [-3.1611% -1.8137% -0.4486%]
Change within noise threshold.
Compress/libdeflater L Level 6/16777216
time: [20.156 ms 20.277 ms 20.403 ms]
thrpt: [784.21 MiB/s 789.08 MiB/s 793.80 MiB/s]
change:
time: [-32.939% -29.714% -26.226%] (p = 0.00 < 0.05)
thrpt: [+35.548% +42.276% +49.118%]
Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Compress/libdeflate-rs L Level 9/16777216
time: [2.6323 ms 2.6445 ms 2.6570 ms]
thrpt: [5.8807 GiB/s 5.9085 GiB/s 5.9359 GiB/s]
change:
time: [-28.740% -26.770% -24.856%] (p = 0.00 < 0.05)
thrpt: [+33.077% +36.556% +40.332%]
Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Compress/libdeflater L Level 9/16777216
time: [20.046 ms 20.137 ms 20.232 ms]
thrpt: [790.84 MiB/s 794.55 MiB/s 798.16 MiB/s]
change:
time: [-26.587% -23.703% -20.766%] (p = 0.00 < 0.05)
thrpt: [+26.209% +31.067% +36.215%]
Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
4 (4.00%) high mild
Compress/libdeflate-rs L Level 10/16777216
time: [39.102 ms 39.358 ms 39.624 ms]
thrpt: [403.79 MiB/s 406.52 MiB/s 409.19 MiB/s]
change:
time: [-51.398% -50.928% -50.477%] (p = 0.00 < 0.05)
thrpt: [+101.93% +103.78% +105.75%]
Performance has improved.
Benchmarking Compress/libdeflater L Level 10/16777216: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 14.6s, or reduce sample count to 30.
Compress/libdeflater L Level 10/16777216
time: [145.89 ms 146.82 ms 147.85 ms]
thrpt: [108.22 MiB/s 108.98 MiB/s 109.67 MiB/s]
change:
time: [-21.898% -19.231% -16.516%] (p = 0.00 < 0.05)
thrpt: [+19.784% +23.810% +28.038%]
Performance has improved.
Found 11 outliers among 100 measurements (11.00%)
5 (5.00%) high mild
6 (6.00%) high severe
Compress/libdeflate-rs XL Level 1/67108864
time: [3.8599 ms 3.8791 ms 3.8991 ms]
thrpt: [16.029 GiB/s 16.112 GiB/s 16.192 GiB/s]
change:
time: [-17.491% -16.999% -16.430%] (p = 0.00 < 0.05)
thrpt: [+19.659% +20.481% +21.199%]
Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Compress/libdeflater XL Level 1/67108864
time: [41.778 ms 42.045 ms 42.318 ms]
thrpt: [1.4769 GiB/s 1.4865 GiB/s 1.4960 GiB/s]
change:
time: [-10.995% -9.8101% -8.7034%] (p = 0.00 < 0.05)
thrpt: [+9.5331% +10.877% +12.353%]
Performance has improved.
Compress/libdeflate-rs XL Level 6/67108864
time: [10.758 ms 11.283 ms 11.897 ms]
thrpt: [5.2533 GiB/s 5.5392 GiB/s 5.8094 GiB/s]
change:
time: [+5.4750% +11.857% +18.974%] (p = 0.00 < 0.05)
thrpt: [-15.948% -10.600% -5.1908%]
Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
1 (1.00%) high mild
2 (2.00%) high severe
Benchmarking Compress/libdeflater XL Level 6/67108864: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.8s, or reduce sample count to 50.
Compress/libdeflater XL Level 6/67108864
time: [90.159 ms 92.460 ms 94.976 ms]
thrpt: [673.86 MiB/s 692.19 MiB/s 709.86 MiB/s]
change:
time: [+10.007% +12.964% +16.186%] (p = 0.00 < 0.05)
thrpt: [-13.931% -11.476% -9.0968%]
Performance has regressed.
Found 10 outliers among 100 measurements (10.00%)
6 (6.00%) high mild
4 (4.00%) high severe
Compress/libdeflate-rs XL Level 9/67108864
time: [8.8030 ms 8.8623 ms 8.9226 ms]
thrpt: [7.0047 GiB/s 7.0523 GiB/s 7.0999 GiB/s]
change:
time: [-1.7885% -0.9745% -0.1655%] (p = 0.02 < 0.05)
thrpt: [+0.1658% +0.9841% +1.8211%]
Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Benchmarking Compress/libdeflater XL Level 9/67108864: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 10.3s, or reduce sample count to 40.
Compress/libdeflater XL Level 9/67108864
time: [104.97 ms 108.89 ms 112.87 ms]
thrpt: [567.02 MiB/s 587.78 MiB/s 609.70 MiB/s]
change:
time: [+24.770% +29.495% +34.119%] (p = 0.00 < 0.05)
thrpt: [-25.440% -22.777% -19.852%]
Performance has regressed.
Benchmarking Compress/libdeflate-rs XL Level 10/67108864: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 16.3s, or reduce sample count to 30.
Compress/libdeflate-rs XL Level 10/67108864
time: [157.26 ms 159.90 ms 162.75 ms]
thrpt: [393.24 MiB/s 400.25 MiB/s 406.96 MiB/s]
change:
time: [-37.223% -36.062% -34.937%] (p = 0.00 < 0.05)
thrpt: [+53.697% +56.401% +59.295%]
Performance has improved.
Found 9 outliers among 100 measurements (9.00%)
9 (9.00%) high mild
Benchmarking Compress/libdeflater XL Level 10/67108864: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 76.4s, or reduce sample count to 10.
Compress/libdeflater XL Level 10/67108864
time: [689.40 ms 706.01 ms 723.96 ms]
thrpt: [88.402 MiB/s 90.650 MiB/s 92.835 MiB/s]
change:
time: [+17.151% +20.138% +23.526%] (p = 0.00 < 0.05)
thrpt: [-19.045% -16.762% -14.640%]
Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
3 (3.00%) high mild
Decompress/libdeflate-rs XXS Level 1/1024
time: [275.20 ns 277.26 ns 279.38 ns]
thrpt: [3.4136 GiB/s 3.4396 GiB/s 3.4654 GiB/s]
change:
time: [+0.7058% +3.1741% +5.4131%] (p = 0.01 < 0.05)
thrpt: [-5.1351% -3.0764% -0.7009%]
Change within noise threshold.
Decompress/libdeflater XXS Level 1/1024
time: [452.22 ns 456.40 ns 460.61 ns]
thrpt: [2.0705 GiB/s 2.0895 GiB/s 2.1089 GiB/s]
change:
time: [-5.1561% -4.1164% -3.0840%] (p = 0.00 < 0.05)
thrpt: [+3.1821% +4.2931% +5.4364%]
Performance has improved.
Found 3 outliers among 100 measurements (3.00%)
3 (3.00%) high mild
Decompress/libdeflate-rs XXS Level 6/1024
time: [1.5563 µs 1.5701 µs 1.5855 µs]
thrpt: [615.92 MiB/s 621.99 MiB/s 627.48 MiB/s]
change:
time: [-11.700% -10.646% -9.5188%] (p = 0.00 < 0.05)
thrpt: [+10.520% +11.914% +13.250%]
Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
3 (3.00%) high mild
1 (1.00%) high severe
Decompress/libdeflater XXS Level 6/1024
time: [1.8026 µs 1.8128 µs 1.8231 µs]
thrpt: [535.65 MiB/s 538.72 MiB/s 541.76 MiB/s]
change:
time: [-7.1036% -5.8446% -4.6133%] (p = 0.00 < 0.05)
thrpt: [+4.8364% +6.2073% +7.6468%]
Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
1 (1.00%) high mild
1 (1.00%) high severe
Decompress/libdeflate-rs XXS Level 9/1024
time: [1.5342 µs 1.5416 µs 1.5492 µs]
thrpt: [630.37 MiB/s 633.48 MiB/s 636.52 MiB/s]
change:
time: [-14.093% -13.341% -12.586%] (p = 0.00 < 0.05)
thrpt: [+14.398% +15.394% +16.405%]
Performance has improved.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Decompress/libdeflater XXS Level 9/1024
time: [1.8006 µs 1.8110 µs 1.8225 µs]
thrpt: [535.84 MiB/s 539.25 MiB/s 542.37 MiB/s]
change:
time: [-6.6469% -4.5781% -2.5930%] (p = 0.00 < 0.05)
thrpt: [+2.6621% +4.7977% +7.1201%]
Performance has improved.
Found 8 outliers among 100 measurements (8.00%)
7 (7.00%) high mild
1 (1.00%) high severe
Decompress/libdeflate-rs XS Level 1/4096
time: [368.65 ns 370.84 ns 373.20 ns]
thrpt: [10.222 GiB/s 10.287 GiB/s 10.348 GiB/s]
change:
time: [+0.4210% +2.8380% +4.9293%] (p = 0.01 < 0.05)
thrpt: [-4.6977% -2.7597% -0.4193%]
Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Decompress/libdeflater XS Level 1/4096
time: [850.78 ns 854.68 ns 858.97 ns]
thrpt: [4.4410 GiB/s 4.4633 GiB/s 4.4838 GiB/s]
change:
time: [-5.4544% -4.3888% -3.4026%] (p = 0.00 < 0.05)
thrpt: [+3.5225% +4.5902% +5.7690%]
Performance has improved.
Found 7 outliers among 100 measurements (7.00%)
6 (6.00%) high mild
1 (1.00%) high severe
Decompress/libdeflate-rs XS Level 6/4096
time: [1.7580 µs 1.7707 µs 1.7850 µs]
thrpt: [2.1371 GiB/s 2.1543 GiB/s 2.1699 GiB/s]
change:
time: [-13.708% -12.640% -11.615%] (p = 0.00 < 0.05)
thrpt: [+13.142% +14.468% +15.886%]
Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
3 (3.00%) high mild
1 (1.00%) high severe
Decompress/libdeflater XS Level 6/4096
time: [3.0402 µs 3.1611 µs 3.2802 µs]
thrpt: [1.1629 GiB/s 1.2068 GiB/s 1.2547 GiB/s]
change:
time: [+14.238% +17.118% +20.461%] (p = 0.00 < 0.05)
thrpt: [-16.986% -14.616% -12.463%]
Performance has regressed.
Decompress/libdeflate-rs XS Level 9/4096
time: [2.0921 µs 2.1373 µs 2.1867 µs]
thrpt: [1.7445 GiB/s 1.7848 GiB/s 1.8234 GiB/s]
change:
time: [+6.6920% +10.058% +13.731%] (p = 0.00 < 0.05)
thrpt: [-12.073% -9.1387% -6.2723%]
Performance has regressed.
Decompress/libdeflater XS Level 9/4096
time: [2.8636 µs 2.9213 µs 2.9848 µs]
thrpt: [1.2781 GiB/s 1.3058 GiB/s 1.3321 GiB/s]
change:
time: [+11.256% +13.485% +15.779%] (p = 0.00 < 0.05)
thrpt: [-13.629% -11.883% -10.117%]
Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
8 (8.00%) high mild
Decompress/libdeflate-rs S Level 1/65536
time: [2.5573 µs 2.5999 µs 2.6525 µs]
thrpt: [23.010 GiB/s 23.476 GiB/s 23.867 GiB/s]
change:
time: [+7.4662% +9.4949% +11.680%] (p = 0.00 < 0.05)
thrpt: [-10.459% -8.6715% -6.9475%]
Performance has regressed.
Found 9 outliers among 100 measurements (9.00%)
4 (4.00%) high mild
5 (5.00%) high severe
Decompress/libdeflater S Level 1/65536
time: [3.0407 µs 3.1208 µs 3.2216 µs]
thrpt: [18.946 GiB/s 19.558 GiB/s 20.073 GiB/s]
change:
time: [+8.9019% +11.867% +15.448%] (p = 0.00 < 0.05)
thrpt: [-13.381% -10.608% -8.1742%]
Performance has regressed.
Found 12 outliers among 100 measurements (12.00%)
4 (4.00%) high mild
8 (8.00%) high severe
Decompress/libdeflate-rs S Level 6/65536
time: [5.3383 µs 5.4305 µs 5.5310 µs]
thrpt: [11.035 GiB/s 11.239 GiB/s 11.433 GiB/s]
change:
time: [-1.8898% -0.2034% +1.6125%] (p = 0.81 > 0.05)
thrpt: [-1.5869% +0.2039% +1.9262%]
No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
2 (2.00%) high mild
Decompress/libdeflater S Level 6/65536
time: [8.0482 µs 8.2906 µs 8.5291 µs]
thrpt: [7.1561 GiB/s 7.3619 GiB/s 7.5837 GiB/s]
change:
time: [-2.3820% +2.3647% +6.8105%] (p = 0.33 > 0.05)
thrpt: [-6.3762% -2.3101% +2.4402%]
No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Decompress/libdeflate-rs S Level 9/65536
time: [6.3476 µs 6.5171 µs 6.7041 µs]
thrpt: [9.1042 GiB/s 9.3654 GiB/s 9.6154 GiB/s]
change:
time: [+2.8329% +7.5337% +12.494%] (p = 0.00 < 0.05)
thrpt: [-11.106% -7.0059% -2.7549%]
Performance has regressed.
Decompress/libdeflater S Level 9/65536
time: [7.9633 µs 8.1634 µs 8.3771 µs]
thrpt: [7.2860 GiB/s 7.4767 GiB/s 7.6646 GiB/s]
change:
time: [+19.092% +22.212% +25.676%] (p = 0.00 < 0.05)
thrpt: [-20.431% -18.175% -16.031%]
Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Decompress/libdeflate-rs M Level 1/1048576
time: [33.611 µs 34.039 µs 34.477 µs]
thrpt: [28.325 GiB/s 28.690 GiB/s 29.055 GiB/s]
change:
time: [-2.3281% -0.7122% +0.9708%] (p = 0.41 > 0.05)
thrpt: [-0.9614% +0.7173% +2.3835%]
No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Decompress/libdeflater M Level 1/1048576
time: [34.441 µs 35.388 µs 36.642 µs]
thrpt: [26.652 GiB/s 27.596 GiB/s 28.355 GiB/s]
change:
time: [+2.3906% +5.2063% +8.3225%] (p = 0.00 < 0.05)
thrpt: [-7.6830% -4.9487% -2.3348%]
Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
3 (3.00%) high mild
2 (2.00%) high severe
Decompress/libdeflate-rs M Level 6/1048576
time: [62.614 µs 63.148 µs 63.732 µs]
thrpt: [15.323 GiB/s 15.465 GiB/s 15.597 GiB/s]
change:
time: [-22.148% -18.266% -14.289%] (p = 0.00 < 0.05)
thrpt: [+16.671% +22.348% +28.449%]
Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
3 (3.00%) high mild
1 (1.00%) high severe
Decompress/libdeflater M Level 6/1048576
time: [76.088 µs 77.836 µs 79.596 µs]
thrpt: [12.269 GiB/s 12.546 GiB/s 12.835 GiB/s]
change:
time: [+15.071% +17.357% +19.761%] (p = 0.00 < 0.05)
thrpt: [-16.501% -14.790% -13.097%]
Performance has regressed.
Decompress/libdeflate-rs M Level 9/1048576
time: [83.283 µs 87.301 µs 91.619 µs]
thrpt: [10.659 GiB/s 11.186 GiB/s 11.726 GiB/s]
change:
time: [+16.389% +21.158% +26.026%] (p = 0.00 < 0.05)
thrpt: [-20.651% -17.463% -14.081%]
Performance has regressed.
Decompress/libdeflater M Level 9/1048576
time: [72.165 µs 73.667 µs 75.151 µs]
thrpt: [12.995 GiB/s 13.256 GiB/s 13.532 GiB/s]
change:
time: [+0.6839% +3.0691% +5.6425%] (p = 0.02 < 0.05)
thrpt: [-5.3411% -2.9777% -0.6793%]
Change within noise threshold.
Benchmarking Decompress/libdeflate-rs L Level 1/16777216: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.1s, enable flat sampling, or reduce sample count to 60.
Decompress/libdeflate-rs L Level 1/16777216
time: [852.38 µs 896.95 µs 945.87 µs]
thrpt: [16.519 GiB/s 17.420 GiB/s 18.331 GiB/s]
change:
time: [+12.239% +18.077% +24.196%] (p = 0.00 < 0.05)
thrpt: [-19.482% -15.309% -10.905%]
Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
5 (5.00%) high mild
Benchmarking Decompress/libdeflater L Level 1/16777216: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.6s, enable flat sampling, or reduce sample count to 60.
Decompress/libdeflater L Level 1/16777216
time: [913.42 µs 983.87 µs 1.0656 ms]
thrpt: [14.663 GiB/s 15.881 GiB/s 17.106 GiB/s]
change:
time: [+41.168% +49.713% +58.776%] (p = 0.00 < 0.05)
thrpt: [-37.018% -33.205% -29.162%]
Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
1 (1.00%) high mild
Benchmarking Decompress/libdeflate-rs L Level 6/16777216: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.3s, enable flat sampling, or reduce sample count to 50.
Decompress/libdeflate-rs L Level 6/16777216
time: [1.7492 ms 1.8261 ms 1.9052 ms]
thrpt: [8.2012 GiB/s 8.5563 GiB/s 8.9327 GiB/s]
change:
time: [+20.373% +25.808% +31.094%] (p = 0.00 < 0.05)
thrpt: [-23.719% -20.514% -16.925%]
Performance has regressed.
Benchmarking Decompress/libdeflater L Level 6/16777216: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 8.7s, enable flat sampling, or reduce sample count to 50.
Decompress/libdeflater L Level 6/16777216
time: [1.4230 ms 1.4568 ms 1.4923 ms]
thrpt: [10.470 GiB/s 10.726 GiB/s 10.981 GiB/s]
change:
time: [+23.747% +27.195% +30.677%] (p = 0.00 < 0.05)
thrpt: [-23.476% -21.380% -19.190%]
Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
8 (8.00%) high mild
Benchmarking Decompress/libdeflate-rs L Level 9/16777216: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.6s, enable flat sampling, or reduce sample count to 50.
Decompress/libdeflate-rs L Level 9/16777216
time: [1.7272 ms 1.8060 ms 1.8890 ms]
thrpt: [8.2718 GiB/s 8.6517 GiB/s 9.0466 GiB/s]
change:
time: [+22.294% +27.346% +32.139%] (p = 0.00 < 0.05)
thrpt: [-24.322% -21.474% -18.230%]
Performance has regressed.
Benchmarking Decompress/libdeflater L Level 9/16777216: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.7s, enable flat sampling, or reduce sample count to 50.
Decompress/libdeflater L Level 9/16777216
time: [1.7373 ms 1.8812 ms 2.1429 ms]
thrpt: [7.2915 GiB/s 8.3060 GiB/s 8.9938 GiB/s]
change:
time: [+55.567% +62.203% +72.329%] (p = 0.00 < 0.05)
thrpt: [-41.971% -38.349% -35.719%]
Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
1 (1.00%) low mild
1 (1.00%) high mild
1 (1.00%) high severe
Decompress/libdeflate-rs XL Level 1/67108864
time: [5.4577 ms 5.6243 ms 5.7989 ms]
thrpt: [10.778 GiB/s 11.113 GiB/s 11.452 GiB/s]
change:
time: [+24.804% +28.853% +33.081%] (p = 0.00 < 0.05)
thrpt: [-24.858% -22.392% -19.874%]
Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
2 (2.00%) high mild
Decompress/libdeflater XL Level 1/67108864
time: [4.2862 ms 4.3365 ms 4.3905 ms]
thrpt: [14.235 GiB/s 14.413 GiB/s 14.582 GiB/s]
change:
time: [+2.8330% +4.1213% +5.3901%] (p = 0.00 < 0.05)
thrpt: [-5.1144% -3.9582% -2.7549%]
Performance has regressed.
Found 9 outliers among 100 measurements (9.00%)
9 (9.00%) high mild
Decompress/libdeflate-rs XL Level 6/67108864
time: [5.5950 ms 5.6469 ms 5.6989 ms]
thrpt: [10.967 GiB/s 11.068 GiB/s 11.171 GiB/s]
change:
time: [-8.4541% -7.3579% -6.2231%] (p = 0.00 < 0.05)
thrpt: [+6.6361% +7.9423% +9.2348%]
Performance has improved.
Decompress/libdeflater XL Level 6/67108864
time: [5.5361 ms 5.6063 ms 5.6777 ms]
thrpt: [11.008 GiB/s 11.148 GiB/s 11.290 GiB/s]
change:
time: [+0.2910% +2.2890% +4.2232%] (p = 0.02 < 0.05)
thrpt: [-4.0521% -2.2378% -0.2902%]
Change within noise threshold.
Decompress/libdeflate-rs XL Level 9/67108864
time: [5.7873 ms 5.8559 ms 5.9257 ms]
thrpt: [10.547 GiB/s 10.673 GiB/s 10.799 GiB/s]
change:
time: [-1.6689% -0.0171% +1.5609%] (p = 0.98 > 0.05)
thrpt: [-1.5369% +0.0171% +1.6972%]
No change in performance detected.
Decompress/libdeflater XL Level 9/67108864
time: [5.4613 ms 5.5294 ms 5.5990 ms]
thrpt: [11.163 GiB/s 11.303 GiB/s 11.444 GiB/s]
change:
time: [+2.7434% +4.8098% +6.9213%] (p = 0.00 < 0.05)
thrpt: [-6.4732% -4.5891% -2.6702%]
Performance has regressed.
Stream Processing/DeflateEncoder