-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo1.10.2.linux-amd64-bench.txt
2767 lines (2755 loc) · 168 KB
/
go1.10.2.linux-amd64-bench.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
goos: linux
goarch: amd64
pkg: archive/tar
Benchmark/Writer/USTAR-2 100000 10684 ns/op 1424 B/op 56 allocs/op
Benchmark/Writer/GNU-2 100000 12989 ns/op 1616 B/op 62 allocs/op
Benchmark/Writer/PAX-2 100000 24067 ns/op 2960 B/op 114 allocs/op
Benchmark/Reader/USTAR-2 200000 11255 ns/op 1427 B/op 33 allocs/op
Benchmark/Reader/GNU-2 200000 7310 ns/op 1387 B/op 31 allocs/op
Benchmark/Reader/PAX-2 50000 21057 ns/op 3543 B/op 68 allocs/op
PASS
ok archive/tar 10.656s
goos: linux
goarch: amd64
pkg: archive/zip
BenchmarkCompressedZipGarbage-2 100 21515865 ns/op 13913 B/op 44 allocs/op
BenchmarkZip64Test-2 10 169491150 ns/op
BenchmarkZip64TestSizes/4096-2 50000 40660 ns/op
BenchmarkZip64TestSizes/1048576-2 1000 1977902 ns/op
BenchmarkZip64TestSizes/67108864-2 10 124720221 ns/op
PASS
ok archive/zip 12.116s
goos: linux
goarch: amd64
pkg: bufio
BenchmarkReaderCopyOptimal-2 10000000 230 ns/op
BenchmarkReaderCopyUnoptimal-2 5000000 398 ns/op
BenchmarkReaderCopyNoWriteTo-2 200000 9353 ns/op
BenchmarkReaderWriteToOptimal-2 2000000 727 ns/op
BenchmarkWriterCopyOptimal-2 10000000 250 ns/op
BenchmarkWriterCopyUnoptimal-2 5000000 344 ns/op
BenchmarkWriterCopyNoReadFrom-2 200000 9062 ns/op
BenchmarkReaderEmpty-2 500000 2097 ns/op 4224 B/op 3 allocs/op
BenchmarkWriterEmpty-2 1000000 1633 ns/op 4096 B/op 1 allocs/op
BenchmarkWriterFlush-2 50000000 28.4 ns/op 0 B/op 0 allocs/op
PASS
ok bufio 20.055s
? builtin [no test files]
goos: linux
goarch: amd64
pkg: bytes
BenchmarkReadString-2 100000 12662 ns/op 2587.77 MB/s
BenchmarkWriteByte-2 100000 17572 ns/op 233.09 MB/s
BenchmarkWriteRune-2 30000 42042 ns/op 292.28 MB/s
BenchmarkBufferNotEmptyWriteRead-2 5000 304294 ns/op
BenchmarkBufferFullSmallReads-2 20000 70436 ns/op
BenchmarkIndexByte/10-2 300000000 4.52 ns/op 2211.87 MB/s
BenchmarkIndexByte/32-2 300000000 5.88 ns/op 5442.26 MB/s
BenchmarkIndexByte/4K-2 20000000 116 ns/op 35207.42 MB/s
BenchmarkIndexByte/4M-2 10000 191396 ns/op 21914.24 MB/s
BenchmarkIndexByte/64M-2 200 9564766 ns/op 7016.26 MB/s
BenchmarkIndexBytePortable/10-2 200000000 7.60 ns/op 1316.38 MB/s
BenchmarkIndexBytePortable/32-2 50000000 38.3 ns/op 835.34 MB/s
BenchmarkIndexBytePortable/4K-2 1000000 1581 ns/op 2589.69 MB/s
BenchmarkIndexBytePortable/4M-2 1000 1625828 ns/op 2579.79 MB/s
BenchmarkIndexBytePortable/64M-2 50 27660351 ns/op 2426.18 MB/s
BenchmarkIndexRune/10-2 100000000 19.6 ns/op 510.73 MB/s
BenchmarkIndexRune/32-2 100000000 21.5 ns/op 1486.43 MB/s
BenchmarkIndexRune/4K-2 10000000 128 ns/op 31895.93 MB/s
BenchmarkIndexRune/4M-2 10000 179570 ns/op 23357.47 MB/s
BenchmarkIndexRune/64M-2 200 9952366 ns/op 6743.01 MB/s
BenchmarkIndexRuneASCII/10-2 200000000 7.12 ns/op 1403.97 MB/s
BenchmarkIndexRuneASCII/32-2 200000000 8.53 ns/op 3750.33 MB/s
BenchmarkIndexRuneASCII/4K-2 20000000 111 ns/op 36659.67 MB/s
BenchmarkIndexRuneASCII/4M-2 10000 179632 ns/op 23349.42 MB/s
BenchmarkIndexRuneASCII/64M-2 200 9938955 ns/op 6752.10 MB/s
BenchmarkEqual/0-2 500000000 3.79 ns/op
BenchmarkEqual/1-2 300000000 4.93 ns/op 202.85 MB/s
BenchmarkEqual/6-2 300000000 4.94 ns/op 1215.49 MB/s
BenchmarkEqual/9-2 300000000 5.68 ns/op 1584.17 MB/s
BenchmarkEqual/15-2 300000000 5.64 ns/op 2661.17 MB/s
BenchmarkEqual/16-2 300000000 5.65 ns/op 2830.45 MB/s
BenchmarkEqual/20-2 200000000 6.79 ns/op 2945.77 MB/s
BenchmarkEqual/32-2 200000000 7.56 ns/op 4235.15 MB/s
BenchmarkEqual/4K-2 20000000 83.7 ns/op 48962.51 MB/s
BenchmarkEqual/4M-2 5000 360257 ns/op 11642.50 MB/s
BenchmarkEqual/64M-2 100 17532750 ns/op 3827.63 MB/s
BenchmarkEqualPort/1-2 300000000 5.23 ns/op 191.28 MB/s
BenchmarkEqualPort/6-2 200000000 9.70 ns/op 618.65 MB/s
BenchmarkEqualPort/32-2 50000000 30.0 ns/op 1065.90 MB/s
BenchmarkEqualPort/4K-2 500000 3112 ns/op 1315.87 MB/s
BenchmarkEqualPort/4M-2 500 3384028 ns/op 1239.44 MB/s
BenchmarkEqualPort/64M-2 30 55626875 ns/op 1206.41 MB/s
BenchmarkIndex/10-2 100000000 13.6 ns/op 732.78 MB/s
BenchmarkIndex/32-2 100000000 14.4 ns/op 2226.98 MB/s
BenchmarkIndex/4K-2 300000 4692 ns/op 872.89 MB/s
BenchmarkIndex/4M-2 300 4829663 ns/op 868.45 MB/s
BenchmarkIndex/64M-2 20 77190103 ns/op 869.40 MB/s
BenchmarkIndexEasy/10-2 100000000 12.5 ns/op 802.06 MB/s
BenchmarkIndexEasy/32-2 100000000 14.6 ns/op 2198.66 MB/s
BenchmarkIndexEasy/4K-2 10000000 121 ns/op 33630.69 MB/s
BenchmarkIndexEasy/4M-2 10000 156401 ns/op 26817.60 MB/s
BenchmarkIndexEasy/64M-2 100 10725781 ns/op 6256.78 MB/s
BenchmarkCount/10-2 50000000 23.4 ns/op 427.68 MB/s
BenchmarkCount/32-2 50000000 26.5 ns/op 1206.77 MB/s
BenchmarkCount/4K-2 300000 4711 ns/op 869.29 MB/s
BenchmarkCount/4M-2 300 4814559 ns/op 871.17 MB/s
BenchmarkCount/64M-2 20 77050353 ns/op 870.97 MB/s
BenchmarkCountEasy/10-2 100000000 23.0 ns/op 434.48 MB/s
BenchmarkCountEasy/32-2 50000000 26.9 ns/op 1188.51 MB/s
BenchmarkCountEasy/4K-2 10000000 134 ns/op 30469.92 MB/s
BenchmarkCountEasy/4M-2 10000 156289 ns/op 26836.82 MB/s
BenchmarkCountEasy/64M-2 200 7492402 ns/op 8956.92 MB/s
BenchmarkCountSingle/10-2 200000000 8.78 ns/op 1138.34 MB/s
BenchmarkCountSingle/32-2 200000000 9.94 ns/op 3219.12 MB/s
BenchmarkCountSingle/4K-2 20000000 116 ns/op 35079.65 MB/s
BenchmarkCountSingle/4M-2 10000 177889 ns/op 23578.13 MB/s
BenchmarkCountSingle/64M-2 100 11733097 ns/op 5719.62 MB/s
BenchmarkFields/ASCII/16-2 10000000 126 ns/op 126.82 MB/s 80 B/op 1 allocs/op
BenchmarkFields/ASCII/256-2 2000000 926 ns/op 276.24 MB/s 768 B/op 1 allocs/op
BenchmarkFields/ASCII/4096-2 100000 12572 ns/op 325.78 MB/s 9472 B/op 1 allocs/op
BenchmarkFields/ASCII/65536-2 5000 271484 ns/op 241.40 MB/s 147456 B/op 1 allocs/op
BenchmarkFields/ASCII/1048576-2 300 4403046 ns/op 238.15 MB/s 2269184 B/op 1 allocs/op
BenchmarkFields/Mixed/16-2 5000000 245 ns/op 65.27 MB/s 96 B/op 1 allocs/op
BenchmarkFields/Mixed/256-2 500000 2495 ns/op 102.60 MB/s 768 B/op 1 allocs/op
BenchmarkFields/Mixed/4096-2 30000 47761 ns/op 85.76 MB/s 24832 B/op 5 allocs/op
BenchmarkFields/Mixed/65536-2 2000 797072 ns/op 82.22 MB/s 497280 B/op 12 allocs/op
BenchmarkFields/Mixed/1048576-2 100 13433109 ns/op 78.06 MB/s 9606784 B/op 24 allocs/op
BenchmarkFieldsFunc/ASCII/16-2 10000000 218 ns/op 73.20 MB/s 80 B/op 1 allocs/op
BenchmarkFieldsFunc/ASCII/256-2 1000000 2242 ns/op 114.15 MB/s 768 B/op 1 allocs/op
BenchmarkFieldsFunc/ASCII/4096-2 50000 38487 ns/op 106.42 MB/s 24832 B/op 5 allocs/op
BenchmarkFieldsFunc/ASCII/65536-2 2000 622951 ns/op 105.20 MB/s 497280 B/op 12 allocs/op
BenchmarkFieldsFunc/ASCII/1048576-2 100 10683397 ns/op 98.15 MB/s 9614976 B/op 24 allocs/op
BenchmarkFieldsFunc/Mixed/16-2 10000000 224 ns/op 71.26 MB/s 96 B/op 1 allocs/op
BenchmarkFieldsFunc/Mixed/256-2 1000000 2159 ns/op 118.57 MB/s 768 B/op 1 allocs/op
BenchmarkFieldsFunc/Mixed/4096-2 30000 42769 ns/op 95.77 MB/s 24832 B/op 5 allocs/op
BenchmarkFieldsFunc/Mixed/65536-2 2000 716340 ns/op 91.49 MB/s 497280 B/op 12 allocs/op
BenchmarkFieldsFunc/Mixed/1048576-2 100 12150729 ns/op 86.30 MB/s 9606784 B/op 24 allocs/op
BenchmarkTrimSpace-2 30000000 49.2 ns/op
BenchmarkSplitEmptySeparator-2 100 19953998 ns/op
BenchmarkSplitSingleByteSeparator-2 1000 2099807 ns/op
BenchmarkSplitMultiByteSeparator-2 1000 1762176 ns/op
BenchmarkSplitNSingleByteSeparator-2 5000000 281 ns/op
BenchmarkSplitNMultiByteSeparator-2 5000000 358 ns/op
BenchmarkRepeat-2 20000000 99.3 ns/op
BenchmarkBytesCompare/1-2 300000000 6.02 ns/op
BenchmarkBytesCompare/2-2 300000000 6.02 ns/op
BenchmarkBytesCompare/4-2 200000000 6.00 ns/op
BenchmarkBytesCompare/8-2 300000000 4.92 ns/op
BenchmarkBytesCompare/16-2 300000000 4.91 ns/op
BenchmarkBytesCompare/32-2 200000000 6.07 ns/op
BenchmarkBytesCompare/64-2 200000000 7.22 ns/op
BenchmarkBytesCompare/128-2 200000000 8.72 ns/op
BenchmarkBytesCompare/256-2 100000000 12.1 ns/op
BenchmarkBytesCompare/512-2 100000000 18.7 ns/op
BenchmarkBytesCompare/1024-2 50000000 31.8 ns/op
BenchmarkBytesCompare/2048-2 30000000 57.6 ns/op
BenchmarkIndexAnyASCII/1:1-2 200000000 6.81 ns/op
BenchmarkIndexAnyASCII/1:2-2 200000000 7.28 ns/op
BenchmarkIndexAnyASCII/1:4-2 200000000 8.71 ns/op
BenchmarkIndexAnyASCII/1:8-2 100000000 11.8 ns/op
BenchmarkIndexAnyASCII/1:16-2 100000000 17.9 ns/op
BenchmarkIndexAnyASCII/16:1-2 50000000 30.5 ns/op
BenchmarkIndexAnyASCII/16:2-2 50000000 31.5 ns/op
BenchmarkIndexAnyASCII/16:4-2 50000000 35.8 ns/op
BenchmarkIndexAnyASCII/16:8-2 30000000 43.2 ns/op
BenchmarkIndexAnyASCII/16:16-2 30000000 56.5 ns/op
BenchmarkIndexAnyASCII/256:1-2 5000000 242 ns/op
BenchmarkIndexAnyASCII/256:2-2 5000000 244 ns/op
BenchmarkIndexAnyASCII/256:4-2 5000000 249 ns/op
BenchmarkIndexAnyASCII/256:8-2 5000000 256 ns/op
BenchmarkIndexAnyASCII/256:16-2 5000000 274 ns/op
BenchmarkIndexAnyASCII/4096:1-2 500000 3526 ns/op
BenchmarkIndexAnyASCII/4096:2-2 500000 3534 ns/op
BenchmarkIndexAnyASCII/4096:4-2 500000 3553 ns/op
BenchmarkIndexAnyASCII/4096:8-2 500000 3523 ns/op
BenchmarkIndexAnyASCII/4096:16-2 500000 3551 ns/op
BenchmarkTrimASCII/1:1-2 20000000 66.5 ns/op
BenchmarkTrimASCII/1:2-2 20000000 98.3 ns/op
BenchmarkTrimASCII/1:4-2 20000000 102 ns/op
BenchmarkTrimASCII/1:8-2 20000000 110 ns/op
BenchmarkTrimASCII/1:16-2 10000000 123 ns/op
BenchmarkTrimASCII/16:1-2 10000000 121 ns/op
BenchmarkTrimASCII/16:2-2 10000000 150 ns/op
BenchmarkTrimASCII/16:4-2 10000000 154 ns/op
BenchmarkTrimASCII/16:8-2 10000000 163 ns/op
BenchmarkTrimASCII/16:16-2 10000000 174 ns/op
BenchmarkTrimASCII/256:1-2 1000000 1013 ns/op
BenchmarkTrimASCII/256:2-2 1000000 1000 ns/op
BenchmarkTrimASCII/256:4-2 1000000 1004 ns/op
BenchmarkTrimASCII/256:8-2 1000000 1013 ns/op
BenchmarkTrimASCII/256:16-2 1000000 1031 ns/op
BenchmarkTrimASCII/4096:1-2 100000 15072 ns/op
BenchmarkTrimASCII/4096:2-2 100000 14614 ns/op
BenchmarkTrimASCII/4096:4-2 100000 14509 ns/op
BenchmarkTrimASCII/4096:8-2 100000 14703 ns/op
BenchmarkTrimASCII/4096:16-2 100000 14605 ns/op
BenchmarkIndexPeriodic/IndexPeriodic2-2 200000 8963 ns/op
BenchmarkIndexPeriodic/IndexPeriodic4-2 200000 9034 ns/op
BenchmarkIndexPeriodic/IndexPeriodic8-2 10000 126359 ns/op
BenchmarkIndexPeriodic/IndexPeriodic16-2 20000 61651 ns/op
BenchmarkIndexPeriodic/IndexPeriodic32-2 50000 30195 ns/op
BenchmarkIndexPeriodic/IndexPeriodic64-2 100000 16478 ns/op
BenchmarkCompareBytesEqual-2 300000000 5.31 ns/op
BenchmarkCompareBytesToNil-2 300000000 4.16 ns/op
BenchmarkCompareBytesEmpty-2 500000000 3.78 ns/op
BenchmarkCompareBytesIdentical-2 500000000 3.91 ns/op
BenchmarkCompareBytesSameLength-2 300000000 5.31 ns/op
BenchmarkCompareBytesDifferentLength-2 300000000 5.31 ns/op
BenchmarkCompareBytesBigUnaligned-2 20000 86546 ns/op 12115.81 MB/s
BenchmarkCompareBytesBig-2 20000 86346 ns/op 12143.99 MB/s
BenchmarkCompareBytesBigIdentical-2 500000000 3.83 ns/op 273984130.10 MB/s
PASS
ok bytes 298.542s
PASS
ok cmd/addr2line 0.003s
goos: linux
goarch: amd64
pkg: cmd/api
BenchmarkAll-2 1 5213465174 ns/op
PASS
ok cmd/api 5.450s
? cmd/asm [no test files]
? cmd/asm/internal/arch [no test files]
PASS
ok cmd/asm/internal/asm 0.003s
? cmd/asm/internal/flags [no test files]
PASS
ok cmd/asm/internal/lex 0.003s
? cmd/buildid [no test files]
? cmd/cgo [no test files]
PASS
ok cmd/compile 0.006s
? cmd/compile/internal/amd64 [no test files]
? cmd/compile/internal/arm [no test files]
? cmd/compile/internal/arm64 [no test files]
goos: linux
goarch: amd64
pkg: cmd/compile/internal/gc
BenchmarkMul2-2 2000000 683 ns/op
BenchmarkMulNeg2-2 2000000 693 ns/op
BenchmarkEfaceInteger-2 500000000 3.62 ns/op
PASS
ok cmd/compile/internal/gc 6.356s
? cmd/compile/internal/mips [no test files]
? cmd/compile/internal/mips64 [no test files]
? cmd/compile/internal/ppc64 [no test files]
? cmd/compile/internal/s390x [no test files]
goos: linux
goarch: amd64
pkg: cmd/compile/internal/ssa
BenchmarkCopyElim1-2 20000 64668 ns/op
BenchmarkCopyElim10-2 20000 95171 ns/op
BenchmarkCopyElim100-2 10000 141067 ns/op
BenchmarkCopyElim1000-2 2000 607966 ns/op
BenchmarkCopyElim10000-2 100 16163316 ns/op
BenchmarkCopyElim100000-2 5 219163219 ns/op
BenchmarkDeadCode/1-2 20000 82635 ns/op
BenchmarkDeadCode/10-2 20000 94475 ns/op
BenchmarkDeadCode/100-2 10000 139094 ns/op
BenchmarkDeadCode/1000-2 2000 595253 ns/op
BenchmarkDeadCode/10000-2 100 10652588 ns/op
BenchmarkDeadCode/100000-2 10 159817042 ns/op
BenchmarkDeadCode/200000-2 3 366468398 ns/op
BenchmarkDominatorsLinear-2 2000 944843 ns/op 10.58 MB/s
BenchmarkDominatorsFwdBack-2 1000 1553965 ns/op 6.44 MB/s
BenchmarkDominatorsManyPred-2 1000 1270762 ns/op 7.87 MB/s
BenchmarkDominatorsMaxPred-2 1000 1253291 ns/op 7.98 MB/s
BenchmarkDominatorsMaxPredVal-2 1000 1266646 ns/op 7.89 MB/s
BenchmarkFuse/1-2 10000 136410 ns/op
BenchmarkFuse/10-2 10000 167286 ns/op
BenchmarkFuse/100-2 5000 363701 ns/op
BenchmarkFuse/1000-2 1000 2250458 ns/op
BenchmarkFuse/10000-2 50 26996281 ns/op
BenchmarkNilCheckDeep1-2 2000000 597 ns/op 1.67 MB/s 101 B/op 6 allocs/op
BenchmarkNilCheckDeep10-2 1000000 1063 ns/op 9.40 MB/s 192 B/op 6 allocs/op
BenchmarkNilCheckDeep100-2 300000 6050 ns/op 16.53 MB/s 1168 B/op 6 allocs/op
BenchmarkNilCheckDeep1000-2 30000 54043 ns/op 18.50 MB/s 10304 B/op 6 allocs/op
BenchmarkNilCheckDeep10000-2 2000 903310 ns/op 11.07 MB/s 102504 B/op 6 allocs/op
BenchmarkDSEPass-2 10000 208060 ns/op 41200 B/op 8 allocs/op
BenchmarkDSEPassBlock-2 500 3326151 ns/op 559994 B/op 240 allocs/op
BenchmarkCSEPass-2 1000 2325165 ns/op 188640 B/op 9 allocs/op
BenchmarkCSEPassBlock-2 100 26896872 ns/op 3104404 B/op 1350 allocs/op
BenchmarkDeadcodePass-2 50000 39394 ns/op 10504 B/op 3 allocs/op
BenchmarkDeadcodePassBlock-2 3000 595084 ns/op 151758 B/op 15 allocs/op
BenchmarkMultiPass-2 10000 146135 ns/op 240024 B/op 11 allocs/op
BenchmarkMultiPassBlock-2 500 2973458 ns/op 3729194 B/op 330 allocs/op
PASS
ok cmd/compile/internal/ssa 96.164s
PASS
ok cmd/compile/internal/syntax 0.002s
goos: linux
goarch: amd64
pkg: cmd/compile/internal/test
BenchmarkDivconstI64-2 2000000000 1.26 ns/op
BenchmarkDivconstU64-2 2000000000 1.52 ns/op
BenchmarkDivconstI32-2 2000000000 0.96 ns/op
BenchmarkDivconstU32-2 2000000000 1.23 ns/op
BenchmarkDivconstI16-2 2000000000 0.95 ns/op
BenchmarkDivconstU16-2 2000000000 0.76 ns/op
BenchmarkDivconstI8-2 2000000000 0.96 ns/op
BenchmarkDivconstU8-2 2000000000 0.76 ns/op
PASS
ok cmd/compile/internal/test 17.672s
PASS
ok cmd/compile/internal/types 0.002s
? cmd/compile/internal/x86 [no test files]
PASS
ok cmd/cover 0.004s
? cmd/dist [no test files]
PASS
ok cmd/doc 0.003s
PASS
ok cmd/fix 0.002s
PASS
ok cmd/go 1.072s
? cmd/go/internal/base [no test files]
? cmd/go/internal/bug [no test files]
PASS
ok cmd/go/internal/cache 0.002s
? cmd/go/internal/cfg [no test files]
? cmd/go/internal/clean [no test files]
? cmd/go/internal/cmdflag [no test files]
? cmd/go/internal/doc [no test files]
? cmd/go/internal/envcmd [no test files]
? cmd/go/internal/fix [no test files]
? cmd/go/internal/fmtcmd [no test files]
PASS
ok cmd/go/internal/generate 0.004s
PASS
ok cmd/go/internal/get 0.007s
? cmd/go/internal/help [no test files]
? cmd/go/internal/list [no test files]
PASS
ok cmd/go/internal/load 0.002s
? cmd/go/internal/run [no test files]
? cmd/go/internal/str [no test files]
? cmd/go/internal/test [no test files]
? cmd/go/internal/tool [no test files]
? cmd/go/internal/version [no test files]
? cmd/go/internal/vet [no test files]
? cmd/go/internal/web [no test files]
PASS
ok cmd/go/internal/work 0.004s
PASS
ok cmd/gofmt 0.002s
? cmd/internal/bio [no test files]
? cmd/internal/browser [no test files]
PASS
ok cmd/internal/buildid 0.002s
PASS
ok cmd/internal/dwarf 0.002s
PASS
ok cmd/internal/edit 0.002s
? cmd/internal/gcprog [no test files]
PASS
ok cmd/internal/goobj 0.324s
PASS
ok cmd/internal/obj 0.002s
? cmd/internal/obj/arm [no test files]
PASS
ok cmd/internal/obj/arm64 0.002s
? cmd/internal/obj/mips [no test files]
? cmd/internal/obj/ppc64 [no test files]
? cmd/internal/obj/s390x [no test files]
PASS
ok cmd/internal/obj/x86 0.002s
PASS
ok cmd/internal/objabi 0.002s
? cmd/internal/objfile [no test files]
PASS
ok cmd/internal/src 0.002s
? cmd/internal/sys [no test files]
PASS
ok cmd/internal/test2json 0.002s
PASS
ok cmd/link 0.002s
? cmd/link/internal/amd64 [no test files]
? cmd/link/internal/arm [no test files]
? cmd/link/internal/arm64 [no test files]
PASS
ok cmd/link/internal/ld 0.002s
? cmd/link/internal/loadelf [no test files]
? cmd/link/internal/loadmacho [no test files]
? cmd/link/internal/loadpe [no test files]
? cmd/link/internal/mips [no test files]
? cmd/link/internal/mips64 [no test files]
? cmd/link/internal/objfile [no test files]
? cmd/link/internal/ppc64 [no test files]
? cmd/link/internal/s390x [no test files]
? cmd/link/internal/sym [no test files]
? cmd/link/internal/x86 [no test files]
PASS
ok cmd/nm 0.456s
PASS
ok cmd/objdump 0.459s
PASS
ok cmd/pack 0.002s
? cmd/pprof [no test files]
? cmd/test2json [no test files]
PASS
ok cmd/trace 0.007s
PASS
ok cmd/vet 0.003s
PASS
ok cmd/vet/internal/cfg 0.002s
? cmd/vet/internal/whitelist [no test files]
goos: linux
goarch: amd64
pkg: compress/bzip2
BenchmarkDecodeDigits-2 200 7416861 ns/op 13.48 MB/s 3611988 B/op 40 allocs/op
BenchmarkDecodeTwain-2 50 24543967 ns/op 15.80 MB/s 3624579 B/op 40 allocs/op
BenchmarkDecodeRand-2 500 2493254 ns/op 6.57 MB/s 3643140 B/op 40 allocs/op
PASS
ok compress/bzip2 5.065s
goos: linux
goarch: amd64
pkg: compress/flate
BenchmarkDecode/Digits/Huffman/1e4-2 10000 154938 ns/op 64.54 MB/s 40619 B/op 5 allocs/op
BenchmarkDecode/Digits/Huffman/1e5-2 1000 1416125 ns/op 70.62 MB/s 40621 B/op 5 allocs/op
BenchmarkDecode/Digits/Huffman/1e6-2 100 14011359 ns/op 71.37 MB/s 40697 B/op 5 allocs/op
BenchmarkDecode/Digits/Speed/1e4-2 10000 161827 ns/op 61.79 MB/s 40699 B/op 8 allocs/op
BenchmarkDecode/Digits/Speed/1e5-2 1000 1592575 ns/op 62.79 MB/s 40909 B/op 11 allocs/op
BenchmarkDecode/Digits/Speed/1e6-2 100 15916241 ns/op 62.83 MB/s 44457 B/op 73 allocs/op
BenchmarkDecode/Digits/Default/1e4-2 10000 164110 ns/op 60.93 MB/s 40666 B/op 7 allocs/op
BenchmarkDecode/Digits/Default/1e5-2 1000 1564399 ns/op 63.92 MB/s 40909 B/op 13 allocs/op
BenchmarkDecode/Digits/Default/1e6-2 100 15607727 ns/op 64.07 MB/s 44873 B/op 79 allocs/op
BenchmarkDecode/Digits/Compression/1e4-2 10000 163441 ns/op 61.18 MB/s 40666 B/op 7 allocs/op
BenchmarkDecode/Digits/Compression/1e5-2 1000 1569176 ns/op 63.73 MB/s 40909 B/op 13 allocs/op
BenchmarkDecode/Digits/Compression/1e6-2 100 15654483 ns/op 63.88 MB/s 44873 B/op 79 allocs/op
BenchmarkDecode/Twain/Huffman/1e4-2 10000 179298 ns/op 55.77 MB/s 42005 B/op 15 allocs/op
BenchmarkDecode/Twain/Huffman/1e5-2 1000 1590850 ns/op 62.86 MB/s 43518 B/op 20 allocs/op
BenchmarkDecode/Twain/Huffman/1e6-2 100 15845362 ns/op 63.11 MB/s 71758 B/op 134 allocs/op
BenchmarkDecode/Twain/Speed/1e4-2 10000 172807 ns/op 57.87 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Speed/1e5-2 1000 1526878 ns/op 65.49 MB/s 45110 B/op 30 allocs/op
BenchmarkDecode/Twain/Speed/1e6-2 100 15137012 ns/op 66.06 MB/s 72594 B/op 193 allocs/op
BenchmarkDecode/Twain/Default/1e4-2 10000 163090 ns/op 61.32 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Default/1e5-2 1000 1302838 ns/op 76.76 MB/s 44342 B/op 28 allocs/op
BenchmarkDecode/Twain/Default/1e6-2 100 12514512 ns/op 79.91 MB/s 70914 B/op 199 allocs/op
BenchmarkDecode/Twain/Compression/1e4-2 10000 163221 ns/op 61.27 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Compression/1e5-2 1000 1302433 ns/op 76.78 MB/s 43318 B/op 28 allocs/op
BenchmarkDecode/Twain/Compression/1e6-2 100 12531999 ns/op 79.80 MB/s 69220 B/op 196 allocs/op
BenchmarkEncode/Digits/Huffman/1e4-2 30000 43095 ns/op 232.04 MB/s
BenchmarkEncode/Digits/Huffman/1e5-2 3000 427928 ns/op 233.68 MB/s
BenchmarkEncode/Digits/Huffman/1e6-2 300 4211330 ns/op 237.45 MB/s
BenchmarkEncode/Digits/Speed/1e4-2 10000 191503 ns/op 52.22 MB/s
BenchmarkEncode/Digits/Speed/1e5-2 1000 1818925 ns/op 54.98 MB/s
BenchmarkEncode/Digits/Speed/1e6-2 100 18092512 ns/op 55.27 MB/s
BenchmarkEncode/Digits/Default/1e4-2 5000 360374 ns/op 27.75 MB/s
BenchmarkEncode/Digits/Default/1e5-2 300 5600869 ns/op 17.85 MB/s
BenchmarkEncode/Digits/Default/1e6-2 20 59665683 ns/op 16.76 MB/s
BenchmarkEncode/Digits/Compression/1e4-2 5000 361677 ns/op 27.65 MB/s
BenchmarkEncode/Digits/Compression/1e5-2 300 5545995 ns/op 18.03 MB/s
BenchmarkEncode/Digits/Compression/1e6-2 20 59626737 ns/op 16.77 MB/s
BenchmarkEncode/Twain/Huffman/1e4-2 20000 61779 ns/op 161.87 MB/s
BenchmarkEncode/Twain/Huffman/1e5-2 3000 493373 ns/op 202.69 MB/s
BenchmarkEncode/Twain/Huffman/1e6-2 300 4889044 ns/op 204.54 MB/s
BenchmarkEncode/Twain/Speed/1e4-2 10000 219442 ns/op 45.57 MB/s
BenchmarkEncode/Twain/Speed/1e5-2 1000 1810282 ns/op 55.24 MB/s
BenchmarkEncode/Twain/Speed/1e6-2 100 17815551 ns/op 56.13 MB/s
BenchmarkEncode/Twain/Default/1e4-2 3000 445043 ns/op 22.47 MB/s
BenchmarkEncode/Twain/Default/1e5-2 200 7029727 ns/op 14.23 MB/s
BenchmarkEncode/Twain/Default/1e6-2 20 76256657 ns/op 13.11 MB/s
BenchmarkEncode/Twain/Compression/1e4-2 3000 451645 ns/op 22.14 MB/s
BenchmarkEncode/Twain/Compression/1e5-2 200 7888892 ns/op 12.68 MB/s
BenchmarkEncode/Twain/Compression/1e6-2 20 86787248 ns/op 11.52 MB/s
PASS
ok compress/flate 82.434s
PASS
ok compress/gzip 0.002s
goos: linux
goarch: amd64
pkg: compress/lzw
BenchmarkDecoder/1e4-2 10000 118708 ns/op 84.24 MB/s
BenchmarkDecoder/1e5-2 2000 1140052 ns/op 87.72 MB/s
BenchmarkDecoder/1e6-2 100 11194541 ns/op 89.33 MB/s
BenchmarkEncoder/1e4-2 10000 239899 ns/op 41.68 MB/s
BenchmarkEncoder/1e5-2 1000 2118564 ns/op 47.20 MB/s
BenchmarkEncoder/1e6-2 100 20859639 ns/op 47.94 MB/s
PASS
ok compress/lzw 11.649s
PASS
ok compress/zlib 0.003s
goos: linux
goarch: amd64
pkg: container/heap
BenchmarkDup-2 3000 432992 ns/op
PASS
ok container/heap 1.347s
PASS
ok container/list 0.003s
PASS
ok container/ring 0.002s
goos: linux
goarch: amd64
pkg: context
BenchmarkWithTimeout/concurrency=40-2 300000 5545 ns/op
BenchmarkWithTimeout/concurrency=4000-2 200000 6699 ns/op
BenchmarkWithTimeout/concurrency=400000-2 300000 8675 ns/op
BenchmarkCancelTree/depth=1/Root=Background-2 10000000 135 ns/op
BenchmarkCancelTree/depth=1/Root=OpenCanceler-2 2000000 829 ns/op
BenchmarkCancelTree/depth=1/Root=ClosedCanceler-2 5000000 384 ns/op
BenchmarkCancelTree/depth=10/Root=Background-2 300000 4819 ns/op
BenchmarkCancelTree/depth=10/Root=OpenCanceler-2 200000 6550 ns/op
BenchmarkCancelTree/depth=10/Root=ClosedCanceler-2 1000000 2242 ns/op
BenchmarkCancelTree/depth=100/Root=Background-2 30000 51207 ns/op
BenchmarkCancelTree/depth=100/Root=OpenCanceler-2 20000 63901 ns/op
BenchmarkCancelTree/depth=100/Root=ClosedCanceler-2 100000 20711 ns/op
BenchmarkCancelTree/depth=1000/Root=Background-2 3000 540211 ns/op
BenchmarkCancelTree/depth=1000/Root=OpenCanceler-2 2000 688586 ns/op
BenchmarkCancelTree/depth=1000/Root=ClosedCanceler-2 10000 215758 ns/op
PASS
ok context 30.865s
PASS
ok crypto 0.002s
goos: linux
goarch: amd64
pkg: crypto/aes
BenchmarkEncrypt-2 100000000 14.7 ns/op 1087.64 MB/s
BenchmarkDecrypt-2 100000000 13.8 ns/op 1156.46 MB/s
BenchmarkExpand-2 20000000 76.8 ns/op
PASS
ok crypto/aes 4.506s
goos: linux
goarch: amd64
pkg: crypto/cipher
BenchmarkAESGCMSeal1K-2 5000000 352 ns/op 2903.40 MB/s
BenchmarkAESGCMOpen1K-2 5000000 333 ns/op 3066.74 MB/s
BenchmarkAESGCMSign8K-2 1000000 1236 ns/op 6626.87 MB/s
BenchmarkAESGCMSeal8K-2 1000000 2109 ns/op 3882.52 MB/s
BenchmarkAESGCMOpen8K-2 1000000 2045 ns/op 4004.43 MB/s
BenchmarkAESCFBEncrypt1K-2 500000 2679 ns/op 380.36 MB/s
BenchmarkAESCFBDecrypt1K-2 500000 2622 ns/op 388.61 MB/s
BenchmarkAESOFB1K-2 1000000 1531 ns/op 665.15 MB/s
BenchmarkAESCTR1K-2 1000000 1751 ns/op 581.82 MB/s
BenchmarkAESCBCEncrypt1K-2 500000 2462 ns/op 415.86 MB/s
BenchmarkAESCBCDecrypt1K-2 1000000 1854 ns/op 552.16 MB/s
PASS
ok crypto/cipher 18.742s
goos: linux
goarch: amd64
pkg: crypto/des
BenchmarkEncrypt-2 10000000 169 ns/op 47.24 MB/s
BenchmarkDecrypt-2 10000000 169 ns/op 47.14 MB/s
BenchmarkTDESEncrypt-2 3000000 421 ns/op 18.99 MB/s
BenchmarkTDESDecrypt-2 3000000 405 ns/op 19.71 MB/s
PASS
ok crypto/des 7.053s
PASS
ok crypto/dsa 0.003s
goos: linux
goarch: amd64
pkg: crypto/ecdsa
BenchmarkSignP256-2 50000 30181 ns/op 2896 B/op 34 allocs/op
BenchmarkSignP384-2 300 4751758 ns/op 2323586 B/op 17477 allocs/op
BenchmarkVerifyP256-2 20000 93158 ns/op 976 B/op 17 allocs/op
BenchmarkKeyGeneration-2 100000 18744 ns/op 688 B/op 13 allocs/op
PASS
ok crypto/ecdsa 8.643s
goos: linux
goarch: amd64
pkg: crypto/elliptic
BenchmarkBaseMult-2 2000 916275 ns/op 224 B/op 5 allocs/op
BenchmarkBaseMultP256-2 100000 17238 ns/op 288 B/op 6 allocs/op
BenchmarkScalarMultP256-2 20000 71586 ns/op 256 B/op 5 allocs/op
PASS
ok crypto/elliptic 5.999s
goos: linux
goarch: amd64
pkg: crypto/hmac
BenchmarkHMACSHA256_1K-2 300000 4611 ns/op 222.06 MB/s
BenchmarkHMACSHA256_32-2 1000000 1171 ns/op 27.32 MB/s
PASS
ok crypto/hmac 2.621s
? crypto/internal/cipherhw [no test files]
goos: linux
goarch: amd64
pkg: crypto/md5
BenchmarkHash8Bytes-2 10000000 194 ns/op 41.15 MB/s
BenchmarkHash1K-2 1000000 2099 ns/op 487.63 MB/s
BenchmarkHash8K-2 100000 15522 ns/op 527.76 MB/s
BenchmarkHash8BytesUnaligned-2 10000000 193 ns/op 41.33 MB/s
BenchmarkHash1KUnaligned-2 1000000 2094 ns/op 488.81 MB/s
BenchmarkHash8KUnaligned-2 100000 15469 ns/op 529.55 MB/s
PASS
ok crypto/md5 11.932s
goos: linux
goarch: amd64
pkg: crypto/rand
BenchmarkPrime-2 10 216494380 ns/op
PASS
ok crypto/rand 2.353s
goos: linux
goarch: amd64
pkg: crypto/rc4
BenchmarkRC4_128-2 5000000 309 ns/op 413.09 MB/s
BenchmarkRC4_1K-2 500000 2836 ns/op 361.00 MB/s
BenchmarkRC4_8K-2 100000 23249 ns/op 348.22 MB/s
PASS
ok crypto/rc4 5.870s
goos: linux
goarch: amd64
pkg: crypto/rsa
BenchmarkRSA2048Decrypt-2 500 2547339 ns/op
BenchmarkRSA2048Sign-2 500 3088582 ns/op
Benchmark3PrimeRSA2048Decrypt-2 1000 1516920 ns/op
PASS
ok crypto/rsa 5.063s
goos: linux
goarch: amd64
pkg: crypto/sha1
BenchmarkHash8Bytes-2 10000000 208 ns/op 38.32 MB/s
BenchmarkHash320Bytes-2 2000000 855 ns/op 374.24 MB/s
BenchmarkHash1K-2 1000000 1731 ns/op 591.35 MB/s
BenchmarkHash8K-2 200000 11249 ns/op 728.18 MB/s
PASS
ok crypto/sha1 8.999s
goos: linux
goarch: amd64
pkg: crypto/sha256
BenchmarkHash8Bytes-2 5000000 321 ns/op 24.90 MB/s
BenchmarkHash1K-2 500000 3723 ns/op 275.00 MB/s
BenchmarkHash8K-2 50000 27600 ns/op 296.81 MB/s
PASS
ok crypto/sha256 5.498s
goos: linux
goarch: amd64
pkg: crypto/sha512
BenchmarkHash8Bytes-2 3000000 429 ns/op 18.62 MB/s
BenchmarkHash1K-2 500000 2803 ns/op 365.28 MB/s
BenchmarkHash8K-2 100000 18967 ns/op 431.89 MB/s
PASS
ok crypto/sha512 5.251s
goos: linux
goarch: amd64
pkg: crypto/subtle
BenchmarkConstantTimeByteEq-2 2000000000 1.32 ns/op
BenchmarkConstantTimeEq-2 2000000000 1.13 ns/op
BenchmarkConstantTimeLessOrEq-2 2000000000 1.51 ns/op
PASS
ok crypto/subtle 8.350s
goos: linux
goarch: amd64
pkg: crypto/tls
BenchmarkHandshakeServer/RSA-2 1000 1344005 ns/op
BenchmarkHandshakeServer/ECDHE-P256-RSA-2 1000 1511779 ns/op
BenchmarkHandshakeServer/ECDHE-P256-ECDSA-P256-2 5000 323920 ns/op
BenchmarkHandshakeServer/ECDHE-X25519-ECDSA-P256-2 5000 325314 ns/op
BenchmarkHandshakeServer/ECDHE-P521-ECDSA-P521-2 50 25149255 ns/op
BenchmarkThroughput/MaxPacket/1MB-2 300 4257702 ns/op 246.28 MB/s
BenchmarkThroughput/MaxPacket/2MB-2 200 6495080 ns/op 322.88 MB/s
BenchmarkThroughput/MaxPacket/4MB-2 100 10961542 ns/op 382.64 MB/s
BenchmarkThroughput/MaxPacket/8MB-2 100 19677777 ns/op 426.30 MB/s
BenchmarkThroughput/MaxPacket/16MB-2 50 36949410 ns/op 454.06 MB/s
BenchmarkThroughput/MaxPacket/32MB-2 20 71720156 ns/op 467.85 MB/s
BenchmarkThroughput/MaxPacket/64MB-2 10 141362004 ns/op 474.73 MB/s
BenchmarkThroughput/DynamicPacket/1MB-2 300 4474615 ns/op 234.34 MB/s
BenchmarkThroughput/DynamicPacket/2MB-2 200 6706600 ns/op 312.70 MB/s
BenchmarkThroughput/DynamicPacket/4MB-2 100 11113782 ns/op 377.40 MB/s
BenchmarkThroughput/DynamicPacket/8MB-2 100 19830797 ns/op 423.01 MB/s
BenchmarkThroughput/DynamicPacket/16MB-2 50 37192772 ns/op 451.09 MB/s
BenchmarkThroughput/DynamicPacket/32MB-2 20 71508056 ns/op 469.24 MB/s
BenchmarkThroughput/DynamicPacket/64MB-2 10 141269074 ns/op 475.04 MB/s
BenchmarkLatency/MaxPacket/200kbps-2 2 695707876 ns/op
BenchmarkLatency/MaxPacket/500kbps-2 5 280243525 ns/op
BenchmarkLatency/MaxPacket/1000kbps-2 10 141876909 ns/op
BenchmarkLatency/MaxPacket/2000kbps-2 20 72481341 ns/op
BenchmarkLatency/MaxPacket/5000kbps-2 50 30841617 ns/op
BenchmarkLatency/DynamicPacket/200kbps-2 10 135411997 ns/op
BenchmarkLatency/DynamicPacket/500kbps-2 20 56347886 ns/op
BenchmarkLatency/DynamicPacket/1000kbps-2 50 29777875 ns/op
BenchmarkLatency/DynamicPacket/2000kbps-2 100 16615092 ns/op
BenchmarkLatency/DynamicPacket/5000kbps-2 200 8585636 ns/op
PASS
ok crypto/tls 49.271s
PASS
ok crypto/x509 0.004s
? crypto/x509/pkix [no test files]
goos: linux
goarch: amd64
pkg: database/sql
BenchmarkConcurrentDBExec-2 100 13798677 ns/op 2636213 B/op 15150 allocs/op
BenchmarkConcurrentStmtQuery-2 100 12087879 ns/op 2587181 B/op 18674 allocs/op
BenchmarkConcurrentStmtExec-2 100 10089034 ns/op 1911110 B/op 3708 allocs/op
BenchmarkConcurrentTxQuery-2 100 13351545 ns/op 2651194 B/op 21164 allocs/op
BenchmarkConcurrentTxExec-2 500 3046940 ns/op 599829 B/op 14650 allocs/op
BenchmarkConcurrentTxStmtQuery-2 500 3717925 ns/op 786154 B/op 19160 allocs/op
BenchmarkConcurrentTxStmtExec-2 2000 1018456 ns/op 117117 B/op 2676 allocs/op
BenchmarkConcurrentRandom-2 100 10794821 ns/op 1842274 B/op 14775 allocs/op
BenchmarkManyConcurrentQueries-2 50000 38888 ns/op 4272 B/op 22 allocs/op
PASS
ok database/sql 14.720s
PASS
ok database/sql/driver 0.002s
PASS
ok debug/dwarf 0.002s
PASS
ok debug/elf 0.003s
PASS
ok debug/gosym 0.002s
PASS
ok debug/macho 0.002s
PASS
ok debug/pe 0.003s
PASS
ok debug/plan9obj 0.002s
? encoding [no test files]
PASS
ok encoding/ascii85 0.002s
goos: linux
goarch: amd64
pkg: encoding/asn1
BenchmarkMarshal-2 30000 43723 ns/op 9872 B/op 421 allocs/op
PASS
ok encoding/asn1 1.760s
goos: linux
goarch: amd64
pkg: encoding/base32
BenchmarkEncodeToString-2 50000 28701 ns/op 285.42 MB/s
BenchmarkDecodeString-2 10000 110451 ns/op 118.71 MB/s
PASS
ok encoding/base32 2.844s
goos: linux
goarch: amd64
pkg: encoding/base64
BenchmarkEncodeToString-2 100000 16070 ns/op 509.76 MB/s
BenchmarkDecodeString/2-2 30000000 52.8 ns/op 75.72 MB/s
BenchmarkDecodeString/4-2 20000000 62.1 ns/op 128.75 MB/s
BenchmarkDecodeString/8-2 20000000 73.9 ns/op 162.35 MB/s
BenchmarkDecodeString/64-2 5000000 281 ns/op 312.63 MB/s
BenchmarkDecodeString/8192-2 100000 23811 ns/op 458.78 MB/s
PASS
ok encoding/base64 10.587s
goos: linux
goarch: amd64
pkg: encoding/binary
BenchmarkReadSlice1000Int32s-2 200000 6067 ns/op 659.30 MB/s
BenchmarkReadStruct-2 1000000 1541 ns/op 48.64 MB/s
BenchmarkReadInts-2 5000000 371 ns/op 80.71 MB/s
BenchmarkWriteInts-2 3000000 429 ns/op 69.86 MB/s
BenchmarkWriteSlice1000Int32s-2 200000 6204 ns/op 644.73 MB/s
BenchmarkPutUint16-2 2000000000 0.85 ns/op 2341.76 MB/s
BenchmarkPutUint32-2 2000000000 0.85 ns/op 4679.08 MB/s
BenchmarkPutUint64-2 2000000000 0.95 ns/op 8430.27 MB/s
BenchmarkLittleEndianPutUint16-2 2000000000 0.95 ns/op 2106.16 MB/s
BenchmarkLittleEndianPutUint32-2 2000000000 1.52 ns/op 2631.85 MB/s
BenchmarkLittleEndianPutUint64-2 2000000000 0.76 ns/op 10594.87 MB/s
BenchmarkPutUvarint32-2 50000000 31.5 ns/op 126.94 MB/s
BenchmarkPutUvarint64-2 20000000 78.7 ns/op 101.68 MB/s
PASS
ok encoding/binary 23.751s
goos: linux
goarch: amd64
pkg: encoding/csv
BenchmarkRead-2 500000 2646 ns/op 664 B/op 18 allocs/op
BenchmarkReadWithFieldsPerRecord-2 500000 2656 ns/op 664 B/op 18 allocs/op
BenchmarkReadWithoutFieldsPerRecord-2 500000 2649 ns/op 664 B/op 18 allocs/op
BenchmarkReadLargeFields-2 300000 4732 ns/op 3936 B/op 24 allocs/op
BenchmarkReadReuseRecord-2 1000000 1492 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordWithFieldsPerRecord-2 1000000 1534 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordWithoutFieldsPerRecord-2 1000000 1563 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordLargeFields-2 500000 3570 ns/op 2976 B/op 12 allocs/op
PASS
ok encoding/csv 11.999s
goos: linux
goarch: amd64
pkg: encoding/gob
BenchmarkEndToEndPipe-2 500000 2661 ns/op
BenchmarkEndToEndByteBuffer-2 1000000 1536 ns/op
BenchmarkEndToEndSliceByteBuffer-2 10000 155374 ns/op
BenchmarkEncodeComplex128Slice-2 100000 21668 ns/op
BenchmarkEncodeFloat64Slice-2 200000 10213 ns/op
BenchmarkEncodeInt32Slice-2 200000 11925 ns/op
BenchmarkEncodeStringSlice-2 100000 11713 ns/op
BenchmarkEncodeInterfaceSlice-2 3000 482767 ns/op
BenchmarkDecodeComplex128Slice-2 30000 51547 ns/op
BenchmarkDecodeFloat64Slice-2 50000 33995 ns/op
BenchmarkDecodeInt32Slice-2 50000 36619 ns/op
BenchmarkDecodeStringSlice-2 20000 69713 ns/op
BenchmarkDecodeInterfaceSlice-2 2000 727198 ns/op
BenchmarkDecodeMap-2 5000 247675 ns/op
PASS
ok encoding/gob 25.516s
goos: linux
goarch: amd64
pkg: encoding/hex
BenchmarkEncode/256-2 3000000 465 ns/op
BenchmarkEncode/1024-2 1000000 1829 ns/op
BenchmarkEncode/4096-2 200000 7044 ns/op
BenchmarkEncode/16384-2 50000 28212 ns/op
PASS
ok encoding/hex 6.907s
goos: linux
goarch: amd64
pkg: encoding/json
BenchmarkCodeEncoder-2 100 13229063 ns/op 146.68 MB/s
BenchmarkCodeMarshal-2 100 14722650 ns/op 131.80 MB/s
BenchmarkCodeDecoder-2 20 57246398 ns/op 33.90 MB/s
BenchmarkUnicodeDecoder-2 3000000 524 ns/op 26.70 MB/s
BenchmarkDecoderStream-2 5000000 392 ns/op
BenchmarkCodeUnmarshal-2 30 58236587 ns/op 33.32 MB/s
BenchmarkCodeUnmarshalReuse-2 20 57746666 ns/op
BenchmarkUnmarshalString-2 2000000 619 ns/op
BenchmarkUnmarshalFloat64-2 3000000 550 ns/op
BenchmarkUnmarshalInt64-2 3000000 490 ns/op
BenchmarkIssue10335-2 2000000 772 ns/op 320 B/op 4 allocs/op
BenchmarkUnmapped-2 500000 2783 ns/op 568 B/op 18 allocs/op
BenchmarkNumberIsValid-2 50000000 23.9 ns/op
BenchmarkNumberIsValidRegexp-2 2000000 764 ns/op
BenchmarkSkipValue-2 100 16102770 ns/op 124.33 MB/s
BenchmarkEncoderEncode-2 5000000 389 ns/op 0 B/op 0 allocs/op
PASS
ok encoding/json 29.404s
goos: linux
goarch: amd64
pkg: encoding/pem
BenchmarkEncode-2 10000 114280 ns/op 573.47 MB/s
BenchmarkDecode-2 5000 356773 ns/op 248.85 MB/s
PASS
ok encoding/pem 2.983s
goos: linux
goarch: amd64
pkg: encoding/xml
BenchmarkMarshal-2 100000 17360 ns/op 5776 B/op 23 allocs/op
BenchmarkUnmarshal-2 30000 43930 ns/op 8608 B/op 189 allocs/op
PASS
ok encoding/xml 3.686s
PASS
ok errors 0.002s
goos: linux
goarch: amd64
pkg: expvar
BenchmarkIntAdd-2 200000000 7.60 ns/op
BenchmarkIntSet-2 200000000 7.67 ns/op
BenchmarkFloatAdd-2 100000000 17.6 ns/op
BenchmarkFloatSet-2 200000000 7.63 ns/op
BenchmarkStringSet-2 30000000 54.2 ns/op
BenchmarkMapSet-2 10000000 181 ns/op
BenchmarkMapSetDifferent-2 2000000 778 ns/op
BenchmarkMapSetString-2 10000000 183 ns/op
BenchmarkMapAddSame-2 1000000 1141 ns/op
BenchmarkMapAddDifferent-2 500000 3269 ns/op
BenchmarkMapAddSameSteadyState-2 30000000 42.1 ns/op
BenchmarkMapAddDifferentSteadyState-2 10000000 181 ns/op
BenchmarkRealworldExpvarUsage-2 500000 4225 ns/op
PASS
ok expvar 25.008s
PASS
ok flag 0.014s
goos: linux
goarch: amd64
pkg: fmt
BenchmarkSprintfPadding-2 5000000 369 ns/op
BenchmarkSprintfEmpty-2 50000000 37.0 ns/op
BenchmarkSprintfString-2 20000000 93.2 ns/op
BenchmarkSprintfTruncateString-2 10000000 173 ns/op
BenchmarkSprintfSlowParsingPath-2 20000000 112 ns/op
BenchmarkSprintfQuoteString-2 2000000 707 ns/op
BenchmarkSprintfInt-2 20000000 97.1 ns/op
BenchmarkSprintfIntInt-2 10000000 150 ns/op
BenchmarkSprintfPrefixedInt-2 10000000 177 ns/op
BenchmarkSprintfFloat-2 5000000 270 ns/op
BenchmarkSprintfComplex-2 2000000 713 ns/op
BenchmarkSprintfBoolean-2 20000000 82.4 ns/op
BenchmarkSprintfHexString-2 10000000 187 ns/op
BenchmarkSprintfHexBytes-2 5000000 248 ns/op
BenchmarkSprintfBytes-2 3000000 534 ns/op
BenchmarkSprintfStringer-2 3000000 468 ns/op
BenchmarkSprintfStructure-2 1000000 1458 ns/op
BenchmarkManyArgs-2 3000000 560 ns/op
BenchmarkFprintInt-2 20000000 88.3 ns/op
BenchmarkFprintfBytes-2 10000000 127 ns/op
BenchmarkFprintIntNoAlloc-2 20000000 87.3 ns/op
BenchmarkScanInts-2 3000 459063 ns/op
BenchmarkScanRecursiveInt-2 30 49918747 ns/op
BenchmarkScanRecursiveIntReaderWrapper-2 30 50846163 ns/op
PASS
ok fmt 44.747s
PASS
ok go/ast 0.003s
PASS
ok go/build 0.003s
goos: linux
goarch: amd64
pkg: go/constant
BenchmarkStringAdd/1-2 10000000 237 ns/op 272 B/op 3 allocs/op
BenchmarkStringAdd/4-2 1000000 1173 ns/op 1360 B/op 11 allocs/op
BenchmarkStringAdd/16-2 500000 3638 ns/op 5072 B/op 25 allocs/op
BenchmarkStringAdd/64-2 100000 12606 ns/op 18384 B/op 75 allocs/op
BenchmarkStringAdd/256-2 30000 47514 ns/op 75216 B/op 269 allocs/op
BenchmarkStringAdd/1024-2 10000 185312 ns/op 295120 B/op 1039 allocs/op
BenchmarkStringAdd/4096-2 2000 936445 ns/op 1268560 B/op 4116 allocs/op
BenchmarkStringAdd/16384-2 200 6934148 ns/op 5446480 B/op 16410 allocs/op
BenchmarkStringAdd/65536-2 30 41982616 ns/op 22084432 B/op 65568 allocs/op
PASS
ok go/constant 16.245s
PASS
ok go/doc 0.006s
PASS
ok go/format 0.002s
PASS
ok go/importer 0.003s
PASS
ok go/internal/gccgoimporter 0.003s
PASS
ok go/internal/gcimporter 0.003s
PASS
ok go/internal/srcimporter 0.003s
goos: linux
goarch: amd64
pkg: go/parser
BenchmarkParse-2 300 4178218 ns/op 15.26 MB/s
PASS
ok go/parser 1.695s
goos: linux
goarch: amd64
pkg: go/printer
BenchmarkPrint-2 200 9813032 ns/op
PASS
ok go/printer 2.489s
goos: linux
goarch: amd64
pkg: go/scanner
BenchmarkScan-2 100000 22685 ns/op
BenchmarkScanFile-2 5000 359798 ns/op 49.27 MB/s
PASS
ok go/scanner 4.344s
PASS
ok go/token 0.003s
PASS
ok go/types 0.003s
PASS
ok hash 0.003s
goos: linux
goarch: amd64
pkg: hash/adler32
BenchmarkAdler32KB-2 3000000 554 ns/op 1845.14 MB/s
PASS
ok hash/adler32 2.230s
goos: linux
goarch: amd64
pkg: hash/crc32
BenchmarkCRC32/poly=IEEE/size=15/align=0-2 30000000 57.9 ns/op 258.96 MB/s
BenchmarkCRC32/poly=IEEE/size=15/align=1-2 30000000 58.3 ns/op 257.13 MB/s
BenchmarkCRC32/poly=IEEE/size=40/align=0-2 30000000 58.3 ns/op 686.45 MB/s
BenchmarkCRC32/poly=IEEE/size=40/align=1-2 30000000 57.0 ns/op 702.13 MB/s
BenchmarkCRC32/poly=IEEE/size=512/align=0-2 20000000 65.3 ns/op 7838.45 MB/s
BenchmarkCRC32/poly=IEEE/size=512/align=1-2 20000000 62.8 ns/op 8149.75 MB/s
BenchmarkCRC32/poly=IEEE/size=1kB/align=0-2 20000000 100.0 ns/op 10240.05 MB/s
BenchmarkCRC32/poly=IEEE/size=1kB/align=1-2 20000000 98.3 ns/op 10421.87 MB/s
BenchmarkCRC32/poly=IEEE/size=4kB/align=0-2 5000000 299 ns/op 13655.97 MB/s
BenchmarkCRC32/poly=IEEE/size=4kB/align=1-2 5000000 284 ns/op 14409.62 MB/s
BenchmarkCRC32/poly=IEEE/size=32kB/align=0-2 1000000 2064 ns/op 15868.54 MB/s
BenchmarkCRC32/poly=IEEE/size=32kB/align=1-2 1000000 2036 ns/op 16091.65 MB/s
BenchmarkCRC32/poly=Castagnoli/size=15/align=0-2 100000000 17.9 ns/op 839.26 MB/s
BenchmarkCRC32/poly=Castagnoli/size=15/align=1-2 100000000 20.0 ns/op 750.04 MB/s
BenchmarkCRC32/poly=Castagnoli/size=40/align=0-2 100000000 20.5 ns/op 1954.70 MB/s
BenchmarkCRC32/poly=Castagnoli/size=40/align=1-2 100000000 22.6 ns/op 1770.36 MB/s
BenchmarkCRC32/poly=Castagnoli/size=512/align=0-2 30000000 47.7 ns/op 10734.42 MB/s
BenchmarkCRC32/poly=Castagnoli/size=512/align=1-2 30000000 52.8 ns/op 9704.22 MB/s
BenchmarkCRC32/poly=Castagnoli/size=1kB/align=0-2 20000000 81.8 ns/op 12511.19 MB/s
BenchmarkCRC32/poly=Castagnoli/size=1kB/align=1-2 20000000 90.4 ns/op 11327.95 MB/s
BenchmarkCRC32/poly=Castagnoli/size=4kB/align=0-2 10000000 221 ns/op 18519.87 MB/s
BenchmarkCRC32/poly=Castagnoli/size=4kB/align=1-2 10000000 229 ns/op 17837.42 MB/s
BenchmarkCRC32/poly=Castagnoli/size=32kB/align=0-2 1000000 1717 ns/op 19079.91 MB/s
BenchmarkCRC32/poly=Castagnoli/size=32kB/align=1-2 1000000 1736 ns/op 18872.43 MB/s
BenchmarkCRC32/poly=Koopman/size=15/align=0-2 30000000 42.3 ns/op 354.23 MB/s
BenchmarkCRC32/poly=Koopman/size=15/align=1-2 30000000 42.4 ns/op 353.48 MB/s
BenchmarkCRC32/poly=Koopman/size=40/align=0-2 20000000 114 ns/op 349.94 MB/s
BenchmarkCRC32/poly=Koopman/size=40/align=1-2 20000000 114 ns/op 349.77 MB/s
BenchmarkCRC32/poly=Koopman/size=512/align=0-2 1000000 1562 ns/op 327.72 MB/s
BenchmarkCRC32/poly=Koopman/size=512/align=1-2 1000000 1559 ns/op 328.30 MB/s
BenchmarkCRC32/poly=Koopman/size=1kB/align=0-2 500000 3133 ns/op 326.76 MB/s
BenchmarkCRC32/poly=Koopman/size=1kB/align=1-2 500000 3127 ns/op 327.41 MB/s
BenchmarkCRC32/poly=Koopman/size=4kB/align=0-2 100000 12557 ns/op 326.18 MB/s
BenchmarkCRC32/poly=Koopman/size=4kB/align=1-2 100000 13336 ns/op 307.13 MB/s
BenchmarkCRC32/poly=Koopman/size=32kB/align=0-2 10000 104347 ns/op 314.03 MB/s
BenchmarkCRC32/poly=Koopman/size=32kB/align=1-2 10000 100778 ns/op 325.15 MB/s
PASS
ok hash/crc32 63.813s
goos: linux
goarch: amd64
pkg: hash/crc64
BenchmarkCrc64/ISO64KB-2 30000 47431 ns/op 1381.70 MB/s
BenchmarkCrc64/ISO4KB-2 500000 3017 ns/op 1357.34 MB/s
BenchmarkCrc64/ISO1KB-2 2000000 774 ns/op 1322.49 MB/s
BenchmarkCrc64/ECMA64KB-2 30000 47904 ns/op 1368.06 MB/s
BenchmarkCrc64/Random64KB-2 30000 54990 ns/op 1191.77 MB/s
BenchmarkCrc64/Random16KB-2 30000 49675 ns/op 329.82 MB/s
PASS
ok hash/crc64 11.897s
goos: linux
goarch: amd64
pkg: hash/fnv
BenchmarkFnv32KB-2 1000000 1525 ns/op 671.36 MB/s
BenchmarkFnv32aKB-2 1000000 1534 ns/op 667.20 MB/s
BenchmarkFnv64KB-2 1000000 1540 ns/op 664.75 MB/s
BenchmarkFnv64aKB-2 1000000 1542 ns/op 663.69 MB/s
BenchmarkFnv128KB-2 200000 6414 ns/op 159.64 MB/s
BenchmarkFnv128aKB-2 300000 5834 ns/op 175.50 MB/s
PASS
ok hash/fnv 9.368s
goos: linux
goarch: amd64
pkg: html
BenchmarkEscape-2 100000 20068 ns/op
BenchmarkEscapeNone-2 300000 4255 ns/op
BenchmarkUnescape-2 100000 23443 ns/op
BenchmarkUnescapeNone-2 20000000 107 ns/op
BenchmarkUnescapeSparse-2 500000 2750 ns/op
BenchmarkUnescapeDense-2 100000 18413 ns/op