-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo1.10.4.linux-amd64-bench.txt
2768 lines (2756 loc) · 168 KB
/
go1.10.4.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 200000 11330 ns/op 1424 B/op 56 allocs/op
Benchmark/Writer/GNU-2 100000 12640 ns/op 1616 B/op 62 allocs/op
Benchmark/Writer/PAX-2 100000 23771 ns/op 2960 B/op 114 allocs/op
Benchmark/Reader/USTAR-2 200000 11334 ns/op 1427 B/op 33 allocs/op
Benchmark/Reader/GNU-2 200000 7857 ns/op 1387 B/op 31 allocs/op
Benchmark/Reader/PAX-2 100000 26228 ns/op 3543 B/op 68 allocs/op
PASS
ok archive/tar 13.327s
goos: linux
goarch: amd64
pkg: archive/zip
BenchmarkCompressedZipGarbage-2 50 20191522 ns/op 22122 B/op 44 allocs/op
BenchmarkZip64Test-2 10 177750018 ns/op
BenchmarkZip64TestSizes/4096-2 50000 39098 ns/op
BenchmarkZip64TestSizes/1048576-2 1000 2147549 ns/op
BenchmarkZip64TestSizes/67108864-2 10 125742616 ns/op
PASS
ok archive/zip 10.057s
goos: linux
goarch: amd64
pkg: bufio
BenchmarkReaderCopyOptimal-2 10000000 239 ns/op
BenchmarkReaderCopyUnoptimal-2 3000000 415 ns/op
BenchmarkReaderCopyNoWriteTo-2 200000 8467 ns/op
BenchmarkReaderWriteToOptimal-2 2000000 765 ns/op
BenchmarkWriterCopyOptimal-2 5000000 256 ns/op
BenchmarkWriterCopyUnoptimal-2 5000000 344 ns/op
BenchmarkWriterCopyNoReadFrom-2 200000 9479 ns/op
BenchmarkReaderEmpty-2 500000 2060 ns/op 4224 B/op 3 allocs/op
BenchmarkWriterEmpty-2 1000000 1698 ns/op 4096 B/op 1 allocs/op
BenchmarkWriterFlush-2 50000000 28.9 ns/op 0 B/op 0 allocs/op
PASS
ok bufio 18.283s
? builtin [no test files]
goos: linux
goarch: amd64
pkg: bytes
BenchmarkReadString-2 100000 14251 ns/op 2299.34 MB/s
BenchmarkWriteByte-2 50000 20857 ns/op 196.38 MB/s
BenchmarkWriteRune-2 30000 39788 ns/op 308.83 MB/s
BenchmarkBufferNotEmptyWriteRead-2 5000 289039 ns/op
BenchmarkBufferFullSmallReads-2 20000 67017 ns/op
BenchmarkIndexByte/10-2 300000000 4.53 ns/op 2205.39 MB/s
BenchmarkIndexByte/32-2 300000000 5.73 ns/op 5586.76 MB/s
BenchmarkIndexByte/4K-2 20000000 109 ns/op 37489.39 MB/s
BenchmarkIndexByte/4M-2 10000 179639 ns/op 23348.51 MB/s
BenchmarkIndexByte/64M-2 200 9357401 ns/op 7171.74 MB/s
BenchmarkIndexBytePortable/10-2 200000000 8.68 ns/op 1151.87 MB/s
BenchmarkIndexBytePortable/32-2 50000000 35.0 ns/op 913.03 MB/s
BenchmarkIndexBytePortable/4K-2 1000000 1592 ns/op 2572.68 MB/s
BenchmarkIndexBytePortable/4M-2 1000 1618014 ns/op 2592.25 MB/s
BenchmarkIndexBytePortable/64M-2 50 28009782 ns/op 2395.91 MB/s
BenchmarkIndexRune/10-2 100000000 19.4 ns/op 515.50 MB/s
BenchmarkIndexRune/32-2 100000000 21.6 ns/op 1484.77 MB/s
BenchmarkIndexRune/4K-2 10000000 128 ns/op 31864.56 MB/s
BenchmarkIndexRune/4M-2 10000 172800 ns/op 24272.54 MB/s
BenchmarkIndexRune/64M-2 200 10215490 ns/op 6569.32 MB/s
BenchmarkIndexRuneASCII/10-2 200000000 7.14 ns/op 1401.51 MB/s
BenchmarkIndexRuneASCII/32-2 200000000 8.43 ns/op 3794.76 MB/s
BenchmarkIndexRuneASCII/4K-2 20000000 111 ns/op 36692.22 MB/s
BenchmarkIndexRuneASCII/4M-2 10000 157180 ns/op 26684.61 MB/s
BenchmarkIndexRuneASCII/64M-2 100 10634773 ns/op 6310.32 MB/s
BenchmarkEqual/0-2 500000000 3.79 ns/op
BenchmarkEqual/1-2 300000000 5.29 ns/op 189.13 MB/s
BenchmarkEqual/6-2 300000000 5.27 ns/op 1139.36 MB/s
BenchmarkEqual/9-2 300000000 5.05 ns/op 1781.22 MB/s
BenchmarkEqual/15-2 300000000 5.11 ns/op 2935.33 MB/s
BenchmarkEqual/16-2 300000000 5.31 ns/op 3010.55 MB/s
BenchmarkEqual/20-2 200000000 6.25 ns/op 3200.02 MB/s
BenchmarkEqual/32-2 200000000 7.66 ns/op 4175.08 MB/s
BenchmarkEqual/4K-2 20000000 83.8 ns/op 48881.40 MB/s
BenchmarkEqual/4M-2 5000 363136 ns/op 11550.23 MB/s
BenchmarkEqual/64M-2 100 13407671 ns/op 5005.26 MB/s
BenchmarkEqualPort/1-2 300000000 4.87 ns/op 205.45 MB/s
BenchmarkEqualPort/6-2 200000000 9.56 ns/op 627.85 MB/s
BenchmarkEqualPort/32-2 50000000 29.6 ns/op 1080.91 MB/s
BenchmarkEqualPort/4K-2 500000 3131 ns/op 1308.12 MB/s
BenchmarkEqualPort/4M-2 500 3374423 ns/op 1242.97 MB/s
BenchmarkEqualPort/64M-2 30 54394728 ns/op 1233.74 MB/s
BenchmarkIndex/10-2 100000000 13.7 ns/op 728.72 MB/s
BenchmarkIndex/32-2 100000000 14.5 ns/op 2201.64 MB/s
BenchmarkIndex/4K-2 300000 4722 ns/op 867.29 MB/s
BenchmarkIndex/4M-2 300 4834838 ns/op 867.52 MB/s
BenchmarkIndex/64M-2 20 79697205 ns/op 842.05 MB/s
BenchmarkIndexEasy/10-2 100000000 13.0 ns/op 769.17 MB/s
BenchmarkIndexEasy/32-2 100000000 14.1 ns/op 2270.06 MB/s
BenchmarkIndexEasy/4K-2 10000000 123 ns/op 33229.36 MB/s
BenchmarkIndexEasy/4M-2 10000 163141 ns/op 25709.57 MB/s
BenchmarkIndexEasy/64M-2 200 9446887 ns/op 7103.81 MB/s
BenchmarkCount/10-2 100000000 23.5 ns/op 426.06 MB/s
BenchmarkCount/32-2 50000000 26.9 ns/op 1188.16 MB/s
BenchmarkCount/4K-2 300000 4743 ns/op 863.49 MB/s
BenchmarkCount/4M-2 300 4805720 ns/op 872.77 MB/s
BenchmarkCount/64M-2 20 76654745 ns/op 875.47 MB/s
BenchmarkCountEasy/10-2 100000000 23.0 ns/op 435.03 MB/s
BenchmarkCountEasy/32-2 50000000 26.7 ns/op 1198.12 MB/s
BenchmarkCountEasy/4K-2 10000000 134 ns/op 30475.20 MB/s
BenchmarkCountEasy/4M-2 10000 186247 ns/op 22520.10 MB/s
BenchmarkCountEasy/64M-2 200 8010210 ns/op 8377.91 MB/s
BenchmarkCountSingle/10-2 200000000 8.76 ns/op 1142.12 MB/s
BenchmarkCountSingle/32-2 200000000 9.81 ns/op 3260.93 MB/s
BenchmarkCountSingle/4K-2 20000000 115 ns/op 35472.02 MB/s
BenchmarkCountSingle/4M-2 10000 184890 ns/op 22685.39 MB/s
BenchmarkCountSingle/64M-2 200 8489693 ns/op 7904.75 MB/s
BenchmarkFields/ASCII/16-2 10000000 125 ns/op 127.11 MB/s 80 B/op 1 allocs/op
BenchmarkFields/ASCII/256-2 2000000 909 ns/op 281.55 MB/s 768 B/op 1 allocs/op
BenchmarkFields/ASCII/4096-2 100000 12479 ns/op 328.21 MB/s 9472 B/op 1 allocs/op
BenchmarkFields/ASCII/65536-2 5000 268096 ns/op 244.45 MB/s 147456 B/op 1 allocs/op
BenchmarkFields/ASCII/1048576-2 300 4393122 ns/op 238.69 MB/s 2269184 B/op 1 allocs/op
BenchmarkFields/Mixed/16-2 5000000 244 ns/op 65.57 MB/s 96 B/op 1 allocs/op
BenchmarkFields/Mixed/256-2 500000 2491 ns/op 102.74 MB/s 768 B/op 1 allocs/op
BenchmarkFields/Mixed/4096-2 30000 47420 ns/op 86.38 MB/s 24832 B/op 5 allocs/op
BenchmarkFields/Mixed/65536-2 2000 786385 ns/op 83.34 MB/s 497280 B/op 12 allocs/op
BenchmarkFields/Mixed/1048576-2 100 13238011 ns/op 79.21 MB/s 9606784 B/op 24 allocs/op
BenchmarkFieldsFunc/ASCII/16-2 10000000 199 ns/op 80.04 MB/s 80 B/op 1 allocs/op
BenchmarkFieldsFunc/ASCII/256-2 1000000 2216 ns/op 115.50 MB/s 768 B/op 1 allocs/op
BenchmarkFieldsFunc/ASCII/4096-2 50000 38085 ns/op 107.55 MB/s 24832 B/op 5 allocs/op
BenchmarkFieldsFunc/ASCII/65536-2 2000 615984 ns/op 106.39 MB/s 497280 B/op 12 allocs/op
BenchmarkFieldsFunc/ASCII/1048576-2 100 10429359 ns/op 100.54 MB/s 9614976 B/op 24 allocs/op
BenchmarkFieldsFunc/Mixed/16-2 10000000 218 ns/op 73.29 MB/s 96 B/op 1 allocs/op
BenchmarkFieldsFunc/Mixed/256-2 1000000 2147 ns/op 119.18 MB/s 768 B/op 1 allocs/op
BenchmarkFieldsFunc/Mixed/4096-2 30000 42462 ns/op 96.46 MB/s 24832 B/op 5 allocs/op
BenchmarkFieldsFunc/Mixed/65536-2 2000 712498 ns/op 91.98 MB/s 497280 B/op 12 allocs/op
BenchmarkFieldsFunc/Mixed/1048576-2 100 12035563 ns/op 87.12 MB/s 9606784 B/op 24 allocs/op
BenchmarkTrimSpace-2 30000000 49.4 ns/op
BenchmarkSplitEmptySeparator-2 100 19410092 ns/op
BenchmarkSplitSingleByteSeparator-2 1000 2073215 ns/op
BenchmarkSplitMultiByteSeparator-2 1000 1761406 ns/op
BenchmarkSplitNSingleByteSeparator-2 5000000 278 ns/op
BenchmarkSplitNMultiByteSeparator-2 5000000 356 ns/op
BenchmarkRepeat-2 20000000 96.7 ns/op
BenchmarkBytesCompare/1-2 200000000 6.03 ns/op
BenchmarkBytesCompare/2-2 200000000 6.04 ns/op
BenchmarkBytesCompare/4-2 200000000 6.06 ns/op
BenchmarkBytesCompare/8-2 300000000 5.01 ns/op
BenchmarkBytesCompare/16-2 300000000 5.16 ns/op
BenchmarkBytesCompare/32-2 200000000 6.10 ns/op
BenchmarkBytesCompare/64-2 200000000 7.23 ns/op
BenchmarkBytesCompare/128-2 200000000 9.05 ns/op
BenchmarkBytesCompare/256-2 100000000 12.1 ns/op
BenchmarkBytesCompare/512-2 100000000 18.9 ns/op
BenchmarkBytesCompare/1024-2 50000000 31.7 ns/op
BenchmarkBytesCompare/2048-2 30000000 57.5 ns/op
BenchmarkIndexAnyASCII/1:1-2 200000000 6.15 ns/op
BenchmarkIndexAnyASCII/1:2-2 200000000 6.88 ns/op
BenchmarkIndexAnyASCII/1:4-2 200000000 8.36 ns/op
BenchmarkIndexAnyASCII/1:8-2 100000000 11.4 ns/op
BenchmarkIndexAnyASCII/1:16-2 100000000 17.4 ns/op
BenchmarkIndexAnyASCII/16:1-2 50000000 30.5 ns/op
BenchmarkIndexAnyASCII/16:2-2 50000000 31.6 ns/op
BenchmarkIndexAnyASCII/16:4-2 50000000 35.9 ns/op
BenchmarkIndexAnyASCII/16:8-2 30000000 43.0 ns/op
BenchmarkIndexAnyASCII/16:16-2 30000000 56.8 ns/op
BenchmarkIndexAnyASCII/256:1-2 5000000 242 ns/op
BenchmarkIndexAnyASCII/256:2-2 5000000 245 ns/op
BenchmarkIndexAnyASCII/256:4-2 5000000 249 ns/op
BenchmarkIndexAnyASCII/256:8-2 5000000 258 ns/op
BenchmarkIndexAnyASCII/256:16-2 5000000 271 ns/op
BenchmarkIndexAnyASCII/4096:1-2 500000 3541 ns/op
BenchmarkIndexAnyASCII/4096:2-2 500000 3544 ns/op
BenchmarkIndexAnyASCII/4096:4-2 500000 3524 ns/op
BenchmarkIndexAnyASCII/4096:8-2 500000 3546 ns/op
BenchmarkIndexAnyASCII/4096:16-2 500000 3562 ns/op
BenchmarkTrimASCII/1:1-2 20000000 66.6 ns/op
BenchmarkTrimASCII/1:2-2 20000000 97.6 ns/op
BenchmarkTrimASCII/1:4-2 20000000 102 ns/op
BenchmarkTrimASCII/1:8-2 20000000 109 ns/op
BenchmarkTrimASCII/1:16-2 10000000 121 ns/op
BenchmarkTrimASCII/16:1-2 10000000 123 ns/op
BenchmarkTrimASCII/16:2-2 10000000 149 ns/op
BenchmarkTrimASCII/16:4-2 10000000 153 ns/op
BenchmarkTrimASCII/16:8-2 10000000 161 ns/op
BenchmarkTrimASCII/16:16-2 10000000 174 ns/op
BenchmarkTrimASCII/256:1-2 1000000 1009 ns/op
BenchmarkTrimASCII/256:2-2 2000000 1002 ns/op
BenchmarkTrimASCII/256:4-2 1000000 1008 ns/op
BenchmarkTrimASCII/256:8-2 1000000 1011 ns/op
BenchmarkTrimASCII/256:16-2 1000000 1033 ns/op
BenchmarkTrimASCII/4096:1-2 100000 15105 ns/op
BenchmarkTrimASCII/4096:2-2 100000 14533 ns/op
BenchmarkTrimASCII/4096:4-2 100000 14550 ns/op
BenchmarkTrimASCII/4096:8-2 100000 14529 ns/op
BenchmarkTrimASCII/4096:16-2 100000 14536 ns/op
BenchmarkIndexPeriodic/IndexPeriodic2-2 200000 8988 ns/op
BenchmarkIndexPeriodic/IndexPeriodic4-2 200000 9022 ns/op
BenchmarkIndexPeriodic/IndexPeriodic8-2 10000 125303 ns/op
BenchmarkIndexPeriodic/IndexPeriodic16-2 20000 61316 ns/op
BenchmarkIndexPeriodic/IndexPeriodic32-2 50000 30545 ns/op
BenchmarkIndexPeriodic/IndexPeriodic64-2 100000 17537 ns/op
BenchmarkCompareBytesEqual-2 300000000 5.55 ns/op
BenchmarkCompareBytesToNil-2 300000000 4.39 ns/op
BenchmarkCompareBytesEmpty-2 500000000 3.97 ns/op
BenchmarkCompareBytesIdentical-2 500000000 3.90 ns/op
BenchmarkCompareBytesSameLength-2 300000000 5.56 ns/op
BenchmarkCompareBytesDifferentLength-2 300000000 5.58 ns/op
BenchmarkCompareBytesBigUnaligned-2 20000 85479 ns/op 12267.15 MB/s
BenchmarkCompareBytesBig-2 20000 84170 ns/op 12457.85 MB/s
BenchmarkCompareBytesBigIdentical-2 500000000 3.84 ns/op 272902030.78 MB/s
PASS
ok bytes 297.440s
PASS
ok cmd/addr2line 0.003s
goos: linux
goarch: amd64
pkg: cmd/api
BenchmarkAll-2 1 5328846308 ns/op
PASS
ok cmd/api 5.564s
? 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.002s
? 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.61 ns/op
PASS
ok cmd/compile/internal/gc 6.355s
? 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 67096 ns/op
BenchmarkCopyElim10-2 20000 73407 ns/op
BenchmarkCopyElim100-2 10000 112700 ns/op
BenchmarkCopyElim1000-2 3000 546023 ns/op
BenchmarkCopyElim10000-2 100 14260238 ns/op
BenchmarkCopyElim100000-2 5 210884652 ns/op
BenchmarkDeadCode/1-2 20000 68051 ns/op
BenchmarkDeadCode/10-2 20000 74321 ns/op
BenchmarkDeadCode/100-2 10000 113170 ns/op
BenchmarkDeadCode/1000-2 2000 583997 ns/op
BenchmarkDeadCode/10000-2 100 10117403 ns/op
BenchmarkDeadCode/100000-2 10 140251173 ns/op
BenchmarkDeadCode/200000-2 5 321350359 ns/op
BenchmarkDominatorsLinear-2 2000 930994 ns/op 10.74 MB/s
BenchmarkDominatorsFwdBack-2 1000 1583562 ns/op 6.31 MB/s
BenchmarkDominatorsManyPred-2 2000 1231259 ns/op 8.12 MB/s
BenchmarkDominatorsMaxPred-2 1000 1225223 ns/op 8.16 MB/s
BenchmarkDominatorsMaxPredVal-2 1000 1236960 ns/op 8.08 MB/s
BenchmarkFuse/1-2 10000 136363 ns/op
BenchmarkFuse/10-2 10000 163372 ns/op
BenchmarkFuse/100-2 5000 363376 ns/op
BenchmarkFuse/1000-2 1000 2217096 ns/op
BenchmarkFuse/10000-2 50 25141416 ns/op
BenchmarkNilCheckDeep1-2 3000000 597 ns/op 1.67 MB/s 101 B/op 6 allocs/op
BenchmarkNilCheckDeep10-2 1000000 1065 ns/op 9.38 MB/s 192 B/op 6 allocs/op
BenchmarkNilCheckDeep100-2 200000 5940 ns/op 16.83 MB/s 1168 B/op 6 allocs/op
BenchmarkNilCheckDeep1000-2 30000 53887 ns/op 18.56 MB/s 10304 B/op 6 allocs/op
BenchmarkNilCheckDeep10000-2 2000 923599 ns/op 10.83 MB/s 102504 B/op 6 allocs/op
BenchmarkDSEPass-2 10000 209544 ns/op 41200 B/op 8 allocs/op
BenchmarkDSEPassBlock-2 500 3324423 ns/op 559994 B/op 240 allocs/op
BenchmarkCSEPass-2 1000 2330850 ns/op 188640 B/op 9 allocs/op
BenchmarkCSEPassBlock-2 100 26907794 ns/op 3104404 B/op 1350 allocs/op
BenchmarkDeadcodePass-2 50000 39170 ns/op 10504 B/op 3 allocs/op
BenchmarkDeadcodePassBlock-2 3000 591668 ns/op 151758 B/op 15 allocs/op
BenchmarkMultiPass-2 10000 151770 ns/op 240024 B/op 11 allocs/op
BenchmarkMultiPassBlock-2 500 2918764 ns/op 3729194 B/op 330 allocs/op
PASS
ok cmd/compile/internal/ssa 95.395s
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.51 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.97 ns/op
BenchmarkDivconstU8-2 2000000000 0.76 ns/op
PASS
ok cmd/compile/internal/test 17.663s
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.049s
? 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.005s
PASS
ok cmd/go/internal/get 0.008s
? cmd/go/internal/help [no test files]
? cmd/go/internal/list [no test files]
PASS
ok cmd/go/internal/load 0.003s
? 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.330s
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.003s
? 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.444s
PASS
ok cmd/objdump 0.451s
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 7288520 ns/op 13.72 MB/s 3611988 B/op 40 allocs/op
BenchmarkDecodeTwain-2 50 24799479 ns/op 15.64 MB/s 3624580 B/op 40 allocs/op
BenchmarkDecodeRand-2 1000 2426259 ns/op 6.75 MB/s 3643140 B/op 40 allocs/op
PASS
ok compress/bzip2 6.210s
goos: linux
goarch: amd64
pkg: compress/flate
BenchmarkDecode/Digits/Huffman/1e4-2 10000 153608 ns/op 65.10 MB/s 40619 B/op 5 allocs/op
BenchmarkDecode/Digits/Huffman/1e5-2 1000 1412884 ns/op 70.78 MB/s 40621 B/op 5 allocs/op
BenchmarkDecode/Digits/Huffman/1e6-2 100 14007268 ns/op 71.39 MB/s 40697 B/op 5 allocs/op
BenchmarkDecode/Digits/Speed/1e4-2 10000 161582 ns/op 61.89 MB/s 40698 B/op 8 allocs/op
BenchmarkDecode/Digits/Speed/1e5-2 1000 1587399 ns/op 63.00 MB/s 40909 B/op 11 allocs/op
BenchmarkDecode/Digits/Speed/1e6-2 100 15876668 ns/op 62.99 MB/s 44457 B/op 73 allocs/op
BenchmarkDecode/Digits/Default/1e4-2 10000 162291 ns/op 61.62 MB/s 40666 B/op 7 allocs/op
BenchmarkDecode/Digits/Default/1e5-2 1000 1560011 ns/op 64.10 MB/s 40909 B/op 13 allocs/op
BenchmarkDecode/Digits/Default/1e6-2 100 15611413 ns/op 64.06 MB/s 44873 B/op 79 allocs/op
BenchmarkDecode/Digits/Compression/1e4-2 10000 163384 ns/op 61.21 MB/s 40667 B/op 7 allocs/op
BenchmarkDecode/Digits/Compression/1e5-2 1000 1561616 ns/op 64.04 MB/s 40909 B/op 13 allocs/op
BenchmarkDecode/Digits/Compression/1e6-2 100 15630610 ns/op 63.98 MB/s 44873 B/op 79 allocs/op
BenchmarkDecode/Twain/Huffman/1e4-2 10000 178975 ns/op 55.87 MB/s 42005 B/op 15 allocs/op
BenchmarkDecode/Twain/Huffman/1e5-2 1000 1588465 ns/op 62.95 MB/s 43518 B/op 20 allocs/op
BenchmarkDecode/Twain/Huffman/1e6-2 100 15773172 ns/op 63.40 MB/s 71676 B/op 134 allocs/op
BenchmarkDecode/Twain/Speed/1e4-2 10000 173201 ns/op 57.74 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Speed/1e5-2 1000 1531096 ns/op 65.31 MB/s 45110 B/op 30 allocs/op
BenchmarkDecode/Twain/Speed/1e6-2 100 15077018 ns/op 66.33 MB/s 72594 B/op 193 allocs/op
BenchmarkDecode/Twain/Default/1e4-2 10000 161903 ns/op 61.77 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Default/1e5-2 1000 1293743 ns/op 77.30 MB/s 44342 B/op 28 allocs/op
BenchmarkDecode/Twain/Default/1e6-2 100 12577884 ns/op 79.50 MB/s 70914 B/op 199 allocs/op
BenchmarkDecode/Twain/Compression/1e4-2 10000 162689 ns/op 61.47 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Compression/1e5-2 1000 1296038 ns/op 77.16 MB/s 43318 B/op 28 allocs/op
BenchmarkDecode/Twain/Compression/1e6-2 100 12533264 ns/op 79.79 MB/s 69220 B/op 196 allocs/op
BenchmarkEncode/Digits/Huffman/1e4-2 30000 45179 ns/op 221.34 MB/s
BenchmarkEncode/Digits/Huffman/1e5-2 3000 433479 ns/op 230.69 MB/s
BenchmarkEncode/Digits/Huffman/1e6-2 300 4219480 ns/op 237.00 MB/s
BenchmarkEncode/Digits/Speed/1e4-2 10000 191876 ns/op 52.12 MB/s
BenchmarkEncode/Digits/Speed/1e5-2 1000 1820545 ns/op 54.93 MB/s
BenchmarkEncode/Digits/Speed/1e6-2 100 18045753 ns/op 55.41 MB/s
BenchmarkEncode/Digits/Default/1e4-2 5000 357453 ns/op 27.98 MB/s
BenchmarkEncode/Digits/Default/1e5-2 300 5533732 ns/op 18.07 MB/s
BenchmarkEncode/Digits/Default/1e6-2 20 59458511 ns/op 16.82 MB/s
BenchmarkEncode/Digits/Compression/1e4-2 5000 359291 ns/op 27.83 MB/s
BenchmarkEncode/Digits/Compression/1e5-2 300 5563778 ns/op 17.97 MB/s
BenchmarkEncode/Digits/Compression/1e6-2 20 60055608 ns/op 16.65 MB/s
BenchmarkEncode/Twain/Huffman/1e4-2 20000 61531 ns/op 162.52 MB/s
BenchmarkEncode/Twain/Huffman/1e5-2 3000 505726 ns/op 197.74 MB/s
BenchmarkEncode/Twain/Huffman/1e6-2 300 4953635 ns/op 201.87 MB/s
BenchmarkEncode/Twain/Speed/1e4-2 10000 220294 ns/op 45.39 MB/s
BenchmarkEncode/Twain/Speed/1e5-2 1000 1821586 ns/op 54.90 MB/s
BenchmarkEncode/Twain/Speed/1e6-2 100 17993015 ns/op 55.58 MB/s
BenchmarkEncode/Twain/Default/1e4-2 3000 450031 ns/op 22.22 MB/s
BenchmarkEncode/Twain/Default/1e5-2 200 7154180 ns/op 13.98 MB/s
BenchmarkEncode/Twain/Default/1e6-2 20 76315219 ns/op 13.10 MB/s
BenchmarkEncode/Twain/Compression/1e4-2 3000 455720 ns/op 21.94 MB/s
BenchmarkEncode/Twain/Compression/1e5-2 200 8031509 ns/op 12.45 MB/s
BenchmarkEncode/Twain/Compression/1e6-2 20 88582732 ns/op 11.29 MB/s
PASS
ok compress/flate 82.581s
PASS
ok compress/gzip 0.002s
goos: linux
goarch: amd64
pkg: compress/lzw
BenchmarkDecoder/1e4-2 10000 120156 ns/op 83.23 MB/s
BenchmarkDecoder/1e5-2 2000 1144768 ns/op 87.35 MB/s
BenchmarkDecoder/1e6-2 100 11286409 ns/op 88.60 MB/s
BenchmarkEncoder/1e4-2 10000 226029 ns/op 44.24 MB/s
BenchmarkEncoder/1e5-2 1000 2127751 ns/op 47.00 MB/s
BenchmarkEncoder/1e6-2 100 20970889 ns/op 47.69 MB/s
PASS
ok compress/lzw 11.562s
PASS
ok compress/zlib 0.002s
goos: linux
goarch: amd64
pkg: container/heap
BenchmarkDup-2 3000 434898 ns/op
PASS
ok container/heap 1.354s
PASS
ok container/list 0.002s
PASS
ok container/ring 0.002s
goos: linux
goarch: amd64
pkg: context
BenchmarkWithTimeout/concurrency=40-2 300000 5463 ns/op
BenchmarkWithTimeout/concurrency=4000-2 200000 6699 ns/op
BenchmarkWithTimeout/concurrency=400000-2 200000 9253 ns/op
BenchmarkCancelTree/depth=1/Root=Background-2 10000000 134 ns/op
BenchmarkCancelTree/depth=1/Root=OpenCanceler-2 2000000 831 ns/op
BenchmarkCancelTree/depth=1/Root=ClosedCanceler-2 5000000 388 ns/op
BenchmarkCancelTree/depth=10/Root=Background-2 300000 5234 ns/op
BenchmarkCancelTree/depth=10/Root=OpenCanceler-2 200000 6488 ns/op
BenchmarkCancelTree/depth=10/Root=ClosedCanceler-2 1000000 2227 ns/op
BenchmarkCancelTree/depth=100/Root=Background-2 30000 50356 ns/op
BenchmarkCancelTree/depth=100/Root=OpenCanceler-2 20000 63324 ns/op
BenchmarkCancelTree/depth=100/Root=ClosedCanceler-2 100000 20705 ns/op
BenchmarkCancelTree/depth=1000/Root=Background-2 3000 521177 ns/op
BenchmarkCancelTree/depth=1000/Root=OpenCanceler-2 2000 663605 ns/op
BenchmarkCancelTree/depth=1000/Root=ClosedCanceler-2 10000 211798 ns/op
PASS
ok context 30.069s
PASS
ok crypto 0.002s
goos: linux
goarch: amd64
pkg: crypto/aes
BenchmarkEncrypt-2 100000000 14.8 ns/op 1083.34 MB/s
BenchmarkDecrypt-2 100000000 13.8 ns/op 1160.18 MB/s
BenchmarkExpand-2 20000000 76.9 ns/op
PASS
ok crypto/aes 4.507s
goos: linux
goarch: amd64
pkg: crypto/cipher
BenchmarkAESGCMSeal1K-2 5000000 354 ns/op 2890.46 MB/s
BenchmarkAESGCMOpen1K-2 5000000 334 ns/op 3058.77 MB/s
BenchmarkAESGCMSign8K-2 1000000 1240 ns/op 6601.68 MB/s
BenchmarkAESGCMSeal8K-2 1000000 2128 ns/op 3847.96 MB/s
BenchmarkAESGCMOpen8K-2 1000000 2049 ns/op 3996.82 MB/s
BenchmarkAESCFBEncrypt1K-2 500000 2701 ns/op 377.21 MB/s
BenchmarkAESCFBDecrypt1K-2 500000 2639 ns/op 385.99 MB/s
BenchmarkAESOFB1K-2 1000000 1540 ns/op 661.61 MB/s
BenchmarkAESCTR1K-2 1000000 1751 ns/op 581.67 MB/s
BenchmarkAESCBCEncrypt1K-2 1000000 2448 ns/op 418.13 MB/s
BenchmarkAESCBCDecrypt1K-2 1000000 1814 ns/op 564.26 MB/s
PASS
ok crypto/cipher 19.996s
goos: linux
goarch: amd64
pkg: crypto/des
BenchmarkEncrypt-2 10000000 169 ns/op 47.11 MB/s
BenchmarkDecrypt-2 10000000 167 ns/op 47.77 MB/s
BenchmarkTDESEncrypt-2 3000000 417 ns/op 19.18 MB/s
BenchmarkTDESDecrypt-2 3000000 425 ns/op 18.81 MB/s
PASS
ok crypto/des 7.099s
PASS
ok crypto/dsa 0.003s
goos: linux
goarch: amd64
pkg: crypto/ecdsa
BenchmarkSignP256-2 50000 31172 ns/op 2896 B/op 34 allocs/op
BenchmarkSignP384-2 300 4910219 ns/op 2322058 B/op 17465 allocs/op
BenchmarkVerifyP256-2 20000 96015 ns/op 976 B/op 17 allocs/op
BenchmarkKeyGeneration-2 100000 19333 ns/op 688 B/op 13 allocs/op
PASS
ok crypto/ecdsa 8.927s
goos: linux
goarch: amd64
pkg: crypto/elliptic
BenchmarkBaseMult-2 2000 940979 ns/op 224 B/op 5 allocs/op
BenchmarkBaseMultP256-2 100000 17893 ns/op 288 B/op 6 allocs/op
BenchmarkScalarMultP256-2 20000 71751 ns/op 256 B/op 5 allocs/op
PASS
ok crypto/elliptic 6.150s
goos: linux
goarch: amd64
pkg: crypto/hmac
BenchmarkHMACSHA256_1K-2 300000 4591 ns/op 223.03 MB/s
BenchmarkHMACSHA256_32-2 1000000 1169 ns/op 27.37 MB/s
PASS
ok crypto/hmac 2.612s
? crypto/internal/cipherhw [no test files]
goos: linux
goarch: amd64
pkg: crypto/md5
BenchmarkHash8Bytes-2 10000000 193 ns/op 41.44 MB/s
BenchmarkHash1K-2 1000000 2097 ns/op 488.22 MB/s
BenchmarkHash8K-2 100000 15473 ns/op 529.41 MB/s
BenchmarkHash8BytesUnaligned-2 10000000 194 ns/op 41.21 MB/s
BenchmarkHash1KUnaligned-2 1000000 2097 ns/op 488.16 MB/s
BenchmarkHash8KUnaligned-2 100000 15456 ns/op 530.01 MB/s
PASS
ok crypto/md5 11.915s
goos: linux
goarch: amd64
pkg: crypto/rand
BenchmarkPrime-2 10 147524994 ns/op
PASS
ok crypto/rand 1.651s
goos: linux
goarch: amd64
pkg: crypto/rc4
BenchmarkRC4_128-2 5000000 309 ns/op 413.43 MB/s
BenchmarkRC4_1K-2 500000 2831 ns/op 361.64 MB/s
BenchmarkRC4_8K-2 100000 22863 ns/op 354.10 MB/s
PASS
ok crypto/rc4 5.828s
goos: linux
goarch: amd64
pkg: crypto/rsa
BenchmarkRSA2048Decrypt-2 500 2472052 ns/op
BenchmarkRSA2048Sign-2 500 2977400 ns/op
Benchmark3PrimeRSA2048Decrypt-2 1000 1449910 ns/op
PASS
ok crypto/rsa 4.881s
goos: linux
goarch: amd64
pkg: crypto/sha1
BenchmarkHash8Bytes-2 10000000 204 ns/op 39.19 MB/s
BenchmarkHash320Bytes-2 2000000 834 ns/op 383.56 MB/s
BenchmarkHash1K-2 1000000 1696 ns/op 603.44 MB/s
BenchmarkHash8K-2 200000 10996 ns/op 744.96 MB/s
PASS
ok crypto/sha1 8.792s
goos: linux
goarch: amd64
pkg: crypto/sha256
BenchmarkHash8Bytes-2 5000000 321 ns/op 24.89 MB/s
BenchmarkHash1K-2 500000 3730 ns/op 274.48 MB/s
BenchmarkHash8K-2 50000 27571 ns/op 297.12 MB/s
PASS
ok crypto/sha256 5.498s
goos: linux
goarch: amd64
pkg: crypto/sha512
BenchmarkHash8Bytes-2 3000000 431 ns/op 18.52 MB/s
BenchmarkHash1K-2 500000 2807 ns/op 364.78 MB/s
BenchmarkHash8K-2 100000 18912 ns/op 433.15 MB/s
PASS
ok crypto/sha512 5.252s
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.336s
goos: linux
goarch: amd64
pkg: crypto/tls
BenchmarkHandshakeServer/RSA-2 1000 1343223 ns/op
BenchmarkHandshakeServer/ECDHE-P256-RSA-2 1000 1516250 ns/op
BenchmarkHandshakeServer/ECDHE-P256-ECDSA-P256-2 5000 323426 ns/op
BenchmarkHandshakeServer/ECDHE-X25519-ECDSA-P256-2 5000 321121 ns/op
BenchmarkHandshakeServer/ECDHE-P521-ECDSA-P521-2 50 25129548 ns/op
BenchmarkThroughput/MaxPacket/1MB-2 300 4283605 ns/op 244.79 MB/s
BenchmarkThroughput/MaxPacket/2MB-2 200 6573167 ns/op 319.05 MB/s
BenchmarkThroughput/MaxPacket/4MB-2 100 11038970 ns/op 379.95 MB/s
BenchmarkThroughput/MaxPacket/8MB-2 100 19765023 ns/op 424.42 MB/s
BenchmarkThroughput/MaxPacket/16MB-2 50 37240871 ns/op 450.51 MB/s
BenchmarkThroughput/MaxPacket/32MB-2 20 72045786 ns/op 465.74 MB/s
BenchmarkThroughput/MaxPacket/64MB-2 10 141270907 ns/op 475.04 MB/s
BenchmarkThroughput/DynamicPacket/1MB-2 300 4461703 ns/op 235.02 MB/s
BenchmarkThroughput/DynamicPacket/2MB-2 200 6795392 ns/op 308.61 MB/s
BenchmarkThroughput/DynamicPacket/4MB-2 100 11174613 ns/op 375.34 MB/s
BenchmarkThroughput/DynamicPacket/8MB-2 100 20074512 ns/op 417.87 MB/s
BenchmarkThroughput/DynamicPacket/16MB-2 50 37393608 ns/op 448.67 MB/s
BenchmarkThroughput/DynamicPacket/32MB-2 20 72140254 ns/op 465.13 MB/s
BenchmarkThroughput/DynamicPacket/64MB-2 10 142312282 ns/op 471.56 MB/s
BenchmarkLatency/MaxPacket/200kbps-2 2 696974182 ns/op
BenchmarkLatency/MaxPacket/500kbps-2 5 280260395 ns/op
BenchmarkLatency/MaxPacket/1000kbps-2 10 141813047 ns/op
BenchmarkLatency/MaxPacket/2000kbps-2 20 72384819 ns/op
BenchmarkLatency/MaxPacket/5000kbps-2 50 30847203 ns/op
BenchmarkLatency/DynamicPacket/200kbps-2 10 135529418 ns/op
BenchmarkLatency/DynamicPacket/500kbps-2 20 56222536 ns/op
BenchmarkLatency/DynamicPacket/1000kbps-2 50 29878825 ns/op
BenchmarkLatency/DynamicPacket/2000kbps-2 100 16629073 ns/op
BenchmarkLatency/DynamicPacket/5000kbps-2 200 8591618 ns/op
PASS
ok crypto/tls 49.394s
PASS
ok crypto/x509 0.004s
? crypto/x509/pkix [no test files]
goos: linux
goarch: amd64
pkg: database/sql
BenchmarkConcurrentDBExec-2 100 13790176 ns/op 2636207 B/op 15150 allocs/op
BenchmarkConcurrentStmtQuery-2 100 12060911 ns/op 2587191 B/op 18674 allocs/op
BenchmarkConcurrentStmtExec-2 100 10256903 ns/op 1911104 B/op 3708 allocs/op
BenchmarkConcurrentTxQuery-2 100 13253849 ns/op 2651194 B/op 21164 allocs/op
BenchmarkConcurrentTxExec-2 500 3029628 ns/op 599829 B/op 14650 allocs/op
BenchmarkConcurrentTxStmtQuery-2 500 3720676 ns/op 786154 B/op 19160 allocs/op
BenchmarkConcurrentTxStmtExec-2 2000 1027975 ns/op 117121 B/op 2676 allocs/op
BenchmarkConcurrentRandom-2 100 10745295 ns/op 1842274 B/op 14775 allocs/op
BenchmarkManyConcurrentQueries-2 50000 38745 ns/op 4273 B/op 22 allocs/op
PASS
ok database/sql 14.718s
PASS
ok database/sql/driver 0.003s
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.002s
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 43534 ns/op 9872 B/op 421 allocs/op
PASS
ok encoding/asn1 1.756s
goos: linux
goarch: amd64
pkg: encoding/base32
BenchmarkEncodeToString-2 50000 27872 ns/op 293.91 MB/s
BenchmarkDecodeString-2 10000 110158 ns/op 119.03 MB/s
PASS
ok encoding/base32 2.802s
goos: linux
goarch: amd64
pkg: encoding/base64
BenchmarkEncodeToString-2 100000 16254 ns/op 503.99 MB/s
BenchmarkDecodeString/2-2 30000000 53.1 ns/op 75.31 MB/s
BenchmarkDecodeString/4-2 20000000 62.4 ns/op 128.14 MB/s
BenchmarkDecodeString/8-2 20000000 73.9 ns/op 162.46 MB/s
BenchmarkDecodeString/64-2 5000000 279 ns/op 314.98 MB/s
BenchmarkDecodeString/8192-2 100000 23511 ns/op 464.62 MB/s
PASS
ok encoding/base64 10.581s
goos: linux
goarch: amd64
pkg: encoding/binary
BenchmarkReadSlice1000Int32s-2 200000 5985 ns/op 668.31 MB/s
BenchmarkReadStruct-2 1000000 1541 ns/op 48.65 MB/s
BenchmarkReadInts-2 5000000 375 ns/op 79.92 MB/s
BenchmarkWriteInts-2 3000000 429 ns/op 69.82 MB/s
BenchmarkWriteSlice1000Int32s-2 200000 6190 ns/op 646.16 MB/s
BenchmarkPutUint16-2 2000000000 0.85 ns/op 2345.14 MB/s
BenchmarkPutUint32-2 2000000000 0.85 ns/op 4694.50 MB/s
BenchmarkPutUint64-2 2000000000 0.95 ns/op 8427.32 MB/s
BenchmarkLittleEndianPutUint16-2 2000000000 0.95 ns/op 2112.43 MB/s
BenchmarkLittleEndianPutUint32-2 2000000000 1.52 ns/op 2627.79 MB/s
BenchmarkLittleEndianPutUint64-2 2000000000 0.76 ns/op 10524.44 MB/s
BenchmarkPutUvarint32-2 50000000 31.4 ns/op 127.46 MB/s
BenchmarkPutUvarint64-2 20000000 78.1 ns/op 102.37 MB/s
PASS
ok encoding/binary 23.722s
goos: linux
goarch: amd64
pkg: encoding/csv
BenchmarkRead-2 500000 2665 ns/op 664 B/op 18 allocs/op
BenchmarkReadWithFieldsPerRecord-2 500000 2658 ns/op 664 B/op 18 allocs/op
BenchmarkReadWithoutFieldsPerRecord-2 500000 2647 ns/op 664 B/op 18 allocs/op
BenchmarkReadLargeFields-2 300000 4802 ns/op 3936 B/op 24 allocs/op
BenchmarkReadReuseRecord-2 1000000 1510 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordWithFieldsPerRecord-2 1000000 1505 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordWithoutFieldsPerRecord-2 1000000 1519 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordLargeFields-2 500000 3597 ns/op 2976 B/op 12 allocs/op
PASS
ok encoding/csv 11.999s
goos: linux
goarch: amd64
pkg: encoding/gob
BenchmarkEndToEndPipe-2 500000 2674 ns/op
BenchmarkEndToEndByteBuffer-2 1000000 1547 ns/op
BenchmarkEndToEndSliceByteBuffer-2 10000 154441 ns/op
BenchmarkEncodeComplex128Slice-2 100000 21704 ns/op
BenchmarkEncodeFloat64Slice-2 200000 10923 ns/op
BenchmarkEncodeInt32Slice-2 200000 11903 ns/op
BenchmarkEncodeStringSlice-2 200000 11698 ns/op
BenchmarkEncodeInterfaceSlice-2 3000 476653 ns/op
BenchmarkDecodeComplex128Slice-2 30000 51602 ns/op
BenchmarkDecodeFloat64Slice-2 50000 33545 ns/op
BenchmarkDecodeInt32Slice-2 50000 34377 ns/op
BenchmarkDecodeStringSlice-2 20000 68714 ns/op
BenchmarkDecodeInterfaceSlice-2 2000 717675 ns/op
BenchmarkDecodeMap-2 5000 241924 ns/op
PASS
ok encoding/gob 26.564s
goos: linux
goarch: amd64
pkg: encoding/hex
BenchmarkEncode/256-2 3000000 452 ns/op
BenchmarkEncode/1024-2 1000000 1766 ns/op
BenchmarkEncode/4096-2 200000 7023 ns/op
BenchmarkEncode/16384-2 50000 28324 ns/op
PASS
ok encoding/hex 6.790s
goos: linux
goarch: amd64
pkg: encoding/json
BenchmarkCodeEncoder-2 100 13137977 ns/op 147.70 MB/s
BenchmarkCodeMarshal-2 100 14512222 ns/op 133.71 MB/s
BenchmarkCodeDecoder-2 20 55668649 ns/op 34.86 MB/s
BenchmarkUnicodeDecoder-2 3000000 520 ns/op 26.88 MB/s
BenchmarkDecoderStream-2 5000000 393 ns/op
BenchmarkCodeUnmarshal-2 30 59398459 ns/op 32.67 MB/s
BenchmarkCodeUnmarshalReuse-2 30 55039600 ns/op
BenchmarkUnmarshalString-2 2000000 612 ns/op
BenchmarkUnmarshalFloat64-2 3000000 538 ns/op
BenchmarkUnmarshalInt64-2 3000000 477 ns/op
BenchmarkIssue10335-2 2000000 734 ns/op 320 B/op 4 allocs/op
BenchmarkUnmapped-2 500000 2717 ns/op 568 B/op 18 allocs/op
BenchmarkNumberIsValid-2 100000000 23.8 ns/op
BenchmarkNumberIsValidRegexp-2 2000000 762 ns/op
BenchmarkSkipValue-2 100 16039385 ns/op 124.82 MB/s
BenchmarkEncoderEncode-2 5000000 386 ns/op 0 B/op 0 allocs/op
PASS
ok encoding/json 30.729s
goos: linux
goarch: amd64
pkg: encoding/pem
BenchmarkEncode-2 10000 114195 ns/op 573.89 MB/s
BenchmarkDecode-2 5000 356019 ns/op 249.37 MB/s
PASS
ok encoding/pem 2.978s
goos: linux
goarch: amd64
pkg: encoding/xml
BenchmarkMarshal-2 100000 17641 ns/op 5776 B/op 23 allocs/op
BenchmarkUnmarshal-2 30000 44166 ns/op 8608 B/op 189 allocs/op
PASS
ok encoding/xml 3.733s
PASS
ok errors 0.003s
goos: linux
goarch: amd64
pkg: expvar
BenchmarkIntAdd-2 200000000 7.64 ns/op
BenchmarkIntSet-2 200000000 7.65 ns/op
BenchmarkFloatAdd-2 100000000 17.6 ns/op
BenchmarkFloatSet-2 200000000 7.63 ns/op
BenchmarkStringSet-2 30000000 53.0 ns/op
BenchmarkMapSet-2 10000000 181 ns/op
BenchmarkMapSetDifferent-2 2000000 779 ns/op
BenchmarkMapSetString-2 10000000 182 ns/op
BenchmarkMapAddSame-2 1000000 1133 ns/op
BenchmarkMapAddDifferent-2 500000 3303 ns/op
BenchmarkMapAddSameSteadyState-2 50000000 40.4 ns/op
BenchmarkMapAddDifferentSteadyState-2 10000000 166 ns/op
BenchmarkRealworldExpvarUsage-2 500000 4468 ns/op
PASS
ok expvar 25.708s
PASS
ok flag 0.002s
goos: linux
goarch: amd64
pkg: fmt
BenchmarkSprintfPadding-2 5000000 368 ns/op
BenchmarkSprintfEmpty-2 50000000 33.9 ns/op
BenchmarkSprintfString-2 20000000 92.8 ns/op
BenchmarkSprintfTruncateString-2 10000000 174 ns/op
BenchmarkSprintfSlowParsingPath-2 20000000 112 ns/op
BenchmarkSprintfQuoteString-2 2000000 717 ns/op
BenchmarkSprintfInt-2 20000000 97.0 ns/op
BenchmarkSprintfIntInt-2 10000000 150 ns/op
BenchmarkSprintfPrefixedInt-2 10000000 176 ns/op
BenchmarkSprintfFloat-2 5000000 270 ns/op
BenchmarkSprintfComplex-2 2000000 716 ns/op
BenchmarkSprintfBoolean-2 20000000 82.5 ns/op
BenchmarkSprintfHexString-2 10000000 188 ns/op
BenchmarkSprintfHexBytes-2 5000000 247 ns/op
BenchmarkSprintfBytes-2 3000000 549 ns/op
BenchmarkSprintfStringer-2 3000000 480 ns/op
BenchmarkSprintfStructure-2 1000000 1518 ns/op
BenchmarkManyArgs-2 3000000 576 ns/op
BenchmarkFprintInt-2 20000000 92.1 ns/op
BenchmarkFprintfBytes-2 10000000 130 ns/op
BenchmarkFprintIntNoAlloc-2 20000000 88.8 ns/op
BenchmarkScanInts-2 3000 545206 ns/op
BenchmarkScanRecursiveInt-2 30 51372609 ns/op
BenchmarkScanRecursiveIntReaderWrapper-2 30 50791278 ns/op
PASS
ok fmt 45.340s
PASS
ok go/ast 0.013s
PASS
ok go/build 0.003s
goos: linux
goarch: amd64
pkg: go/constant
BenchmarkStringAdd/1-2 5000000 237 ns/op 272 B/op 3 allocs/op
BenchmarkStringAdd/4-2 1000000 1130 ns/op 1360 B/op 11 allocs/op
BenchmarkStringAdd/16-2 500000 3562 ns/op 5072 B/op 25 allocs/op
BenchmarkStringAdd/64-2 100000 12018 ns/op 18384 B/op 75 allocs/op
BenchmarkStringAdd/256-2 30000 44801 ns/op 75216 B/op 269 allocs/op
BenchmarkStringAdd/1024-2 10000 178910 ns/op 295120 B/op 1039 allocs/op
BenchmarkStringAdd/4096-2 2000 896829 ns/op 1268560 B/op 4116 allocs/op
BenchmarkStringAdd/16384-2 200 7196058 ns/op 5446480 B/op 16410 allocs/op
BenchmarkStringAdd/65536-2 30 43088618 ns/op 22084432 B/op 65568 allocs/op
PASS
ok go/constant 14.782s
PASS
ok go/doc 0.006s
PASS
ok go/format 0.002s
PASS
ok go/importer 0.004s
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 4115829 ns/op 15.49 MB/s
PASS
ok go/parser 1.655s
goos: linux
goarch: amd64
pkg: go/printer
BenchmarkPrint-2 200 9691275 ns/op
PASS
ok go/printer 2.460s
goos: linux
goarch: amd64
pkg: go/scanner
BenchmarkScan-2 100000 22384 ns/op
BenchmarkScanFile-2 5000 347098 ns/op 51.08 MB/s
PASS
ok go/scanner 4.245s
PASS
ok go/token 0.003s
PASS
ok go/types 0.003s
PASS
ok hash 0.002s
goos: linux
goarch: amd64
pkg: hash/adler32
BenchmarkAdler32KB-2 3000000 539 ns/op 1898.98 MB/s
PASS
ok hash/adler32 2.176s
goos: linux
goarch: amd64
pkg: hash/crc32
BenchmarkCRC32/poly=IEEE/size=15/align=0-2 30000000 55.8 ns/op 268.96 MB/s
BenchmarkCRC32/poly=IEEE/size=15/align=1-2 30000000 55.8 ns/op 268.80 MB/s
BenchmarkCRC32/poly=IEEE/size=40/align=0-2 30000000 56.3 ns/op 709.92 MB/s
BenchmarkCRC32/poly=IEEE/size=40/align=1-2 30000000 56.4 ns/op 708.99 MB/s
BenchmarkCRC32/poly=IEEE/size=512/align=0-2 20000000 64.3 ns/op 7962.99 MB/s
BenchmarkCRC32/poly=IEEE/size=512/align=1-2 20000000 61.5 ns/op 8329.63 MB/s
BenchmarkCRC32/poly=IEEE/size=1kB/align=0-2 20000000 98.8 ns/op 10361.88 MB/s
BenchmarkCRC32/poly=IEEE/size=1kB/align=1-2 20000000 98.6 ns/op 10383.38 MB/s
BenchmarkCRC32/poly=IEEE/size=4kB/align=0-2 5000000 296 ns/op 13831.16 MB/s
BenchmarkCRC32/poly=IEEE/size=4kB/align=1-2 5000000 285 ns/op 14326.53 MB/s
BenchmarkCRC32/poly=IEEE/size=32kB/align=0-2 1000000 2061 ns/op 15892.70 MB/s
BenchmarkCRC32/poly=IEEE/size=32kB/align=1-2 1000000 2045 ns/op 16018.92 MB/s
BenchmarkCRC32/poly=Castagnoli/size=15/align=0-2 100000000 18.0 ns/op 831.54 MB/s
BenchmarkCRC32/poly=Castagnoli/size=15/align=1-2 100000000 20.0 ns/op 749.13 MB/s
BenchmarkCRC32/poly=Castagnoli/size=40/align=0-2 100000000 20.4 ns/op 1963.17 MB/s
BenchmarkCRC32/poly=Castagnoli/size=40/align=1-2 100000000 22.4 ns/op 1781.92 MB/s
BenchmarkCRC32/poly=Castagnoli/size=512/align=0-2 30000000 47.6 ns/op 10745.36 MB/s
BenchmarkCRC32/poly=Castagnoli/size=512/align=1-2 30000000 52.7 ns/op 9723.37 MB/s
BenchmarkCRC32/poly=Castagnoli/size=1kB/align=0-2 20000000 82.0 ns/op 12483.70 MB/s
BenchmarkCRC32/poly=Castagnoli/size=1kB/align=1-2 20000000 91.9 ns/op 11141.11 MB/s
BenchmarkCRC32/poly=Castagnoli/size=4kB/align=0-2 10000000 220 ns/op 18605.98 MB/s
BenchmarkCRC32/poly=Castagnoli/size=4kB/align=1-2 10000000 230 ns/op 17782.88 MB/s
BenchmarkCRC32/poly=Castagnoli/size=32kB/align=0-2 1000000 1728 ns/op 18955.89 MB/s
BenchmarkCRC32/poly=Castagnoli/size=32kB/align=1-2 1000000 1744 ns/op 18787.75 MB/s
BenchmarkCRC32/poly=Koopman/size=15/align=0-2 30000000 42.1 ns/op 356.26 MB/s
BenchmarkCRC32/poly=Koopman/size=15/align=1-2 30000000 42.0 ns/op 357.46 MB/s
BenchmarkCRC32/poly=Koopman/size=40/align=0-2 20000000 114 ns/op 349.01 MB/s
BenchmarkCRC32/poly=Koopman/size=40/align=1-2 20000000 114 ns/op 349.23 MB/s
BenchmarkCRC32/poly=Koopman/size=512/align=0-2 1000000 1563 ns/op 327.53 MB/s
BenchmarkCRC32/poly=Koopman/size=512/align=1-2 1000000 1553 ns/op 329.53 MB/s
BenchmarkCRC32/poly=Koopman/size=1kB/align=0-2 500000 3122 ns/op 327.92 MB/s
BenchmarkCRC32/poly=Koopman/size=1kB/align=1-2 500000 3123 ns/op 327.79 MB/s
BenchmarkCRC32/poly=Koopman/size=4kB/align=0-2 100000 12551 ns/op 326.33 MB/s
BenchmarkCRC32/poly=Koopman/size=4kB/align=1-2 100000 12550 ns/op 326.36 MB/s
BenchmarkCRC32/poly=Koopman/size=32kB/align=0-2 20000 100762 ns/op 325.20 MB/s
BenchmarkCRC32/poly=Koopman/size=32kB/align=1-2 10000 100208 ns/op 327.00 MB/s
PASS
ok hash/crc32 65.425s
goos: linux
goarch: amd64
pkg: hash/crc64
BenchmarkCrc64/ISO64KB-2 30000 47337 ns/op 1384.45 MB/s
BenchmarkCrc64/ISO4KB-2 500000 3026 ns/op 1353.60 MB/s
BenchmarkCrc64/ISO1KB-2 2000000 777 ns/op 1317.25 MB/s
BenchmarkCrc64/ECMA64KB-2 30000 47688 ns/op 1374.24 MB/s
BenchmarkCrc64/Random64KB-2 30000 54859 ns/op 1194.62 MB/s
BenchmarkCrc64/Random16KB-2 30000 49839 ns/op 328.73 MB/s
PASS
ok hash/crc64 11.895s
goos: linux
goarch: amd64
pkg: hash/fnv
BenchmarkFnv32KB-2 1000000 1532 ns/op 668.22 MB/s
BenchmarkFnv32aKB-2 1000000 1535 ns/op 666.75 MB/s
BenchmarkFnv64KB-2 1000000 1655 ns/op 618.57 MB/s
BenchmarkFnv64aKB-2 1000000 1543 ns/op 663.63 MB/s
BenchmarkFnv128KB-2 200000 6242 ns/op 164.03 MB/s
BenchmarkFnv128aKB-2 300000 6006 ns/op 170.48 MB/s
PASS
ok hash/fnv 9.508s
goos: linux
goarch: amd64
pkg: html
BenchmarkEscape-2 100000 19804 ns/op
BenchmarkEscapeNone-2 300000 4239 ns/op
BenchmarkUnescape-2 100000 23019 ns/op
BenchmarkUnescapeNone-2 20000000 107 ns/op
BenchmarkUnescapeSparse-2 500000 2759 ns/op
BenchmarkUnescapeDense-2 100000 17423 ns/op