-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo1.10.linux-amd64-bench.txt
2751 lines (2739 loc) · 166 KB
/
go1.10.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 11530 ns/op 1424 B/op 56 allocs/op
Benchmark/Writer/GNU-2 200000 13339 ns/op 1616 B/op 62 allocs/op
Benchmark/Writer/PAX-2 50000 25801 ns/op 2960 B/op 114 allocs/op
Benchmark/Reader/USTAR-2 200000 10470 ns/op 1427 B/op 33 allocs/op
Benchmark/Reader/GNU-2 200000 8356 ns/op 1387 B/op 31 allocs/op
Benchmark/Reader/PAX-2 100000 25564 ns/op 3543 B/op 68 allocs/op
PASS
ok archive/tar 13.553s
goos: linux
goarch: amd64
pkg: archive/zip
BenchmarkCompressedZipGarbage-2 100 19571733 ns/op 13914 B/op 44 allocs/op
BenchmarkZip64Test-2 5 209468230 ns/op
BenchmarkZip64TestSizes/4096-2 50000 39909 ns/op
BenchmarkZip64TestSizes/1048576-2 500 2491804 ns/op
BenchmarkZip64TestSizes/67108864-2 10 168433469 ns/op
PASS
ok archive/zip 11.036s
goos: linux
goarch: amd64
pkg: bufio
BenchmarkReaderCopyOptimal-2 5000000 238 ns/op
BenchmarkReaderCopyUnoptimal-2 3000000 397 ns/op
BenchmarkReaderCopyNoWriteTo-2 200000 9598 ns/op
BenchmarkReaderWriteToOptimal-2 2000000 724 ns/op
BenchmarkWriterCopyOptimal-2 10000000 249 ns/op
BenchmarkWriterCopyUnoptimal-2 5000000 335 ns/op
BenchmarkWriterCopyNoReadFrom-2 200000 8667 ns/op
BenchmarkReaderEmpty-2 1000000 2117 ns/op 4224 B/op 3 allocs/op
BenchmarkWriterEmpty-2 1000000 1367 ns/op 4096 B/op 1 allocs/op
BenchmarkWriterFlush-2 100000000 17.9 ns/op 0 B/op 0 allocs/op
PASS
ok bufio 20.193s
? builtin [no test files]
goos: linux
goarch: amd64
pkg: bytes
BenchmarkReadString-2 200000 6552 ns/op 5001.14 MB/s
BenchmarkWriteByte-2 100000 17017 ns/op 240.70 MB/s
BenchmarkWriteRune-2 30000 40177 ns/op 305.84 MB/s
BenchmarkBufferNotEmptyWriteRead-2 5000 286100 ns/op
BenchmarkBufferFullSmallReads-2 20000 66708 ns/op
BenchmarkIndexByte/10-2 300000000 4.56 ns/op 2190.87 MB/s
BenchmarkIndexByte/32-2 300000000 5.57 ns/op 5740.33 MB/s
BenchmarkIndexByte/4K-2 20000000 108 ns/op 37640.42 MB/s
BenchmarkIndexByte/4M-2 10000 185231 ns/op 22643.62 MB/s
BenchmarkIndexByte/64M-2 200 8195230 ns/op 8188.77 MB/s
BenchmarkIndexBytePortable/10-2 200000000 7.06 ns/op 1415.96 MB/s
BenchmarkIndexBytePortable/32-2 50000000 36.9 ns/op 867.84 MB/s
BenchmarkIndexBytePortable/4K-2 1000000 1595 ns/op 2567.71 MB/s
BenchmarkIndexBytePortable/4M-2 1000 1645223 ns/op 2549.38 MB/s
BenchmarkIndexBytePortable/64M-2 50 27457895 ns/op 2444.06 MB/s
BenchmarkIndexRune/10-2 100000000 19.6 ns/op 508.94 MB/s
BenchmarkIndexRune/32-2 100000000 21.6 ns/op 1483.25 MB/s
BenchmarkIndexRune/4K-2 10000000 126 ns/op 32420.14 MB/s
BenchmarkIndexRune/4M-2 10000 180099 ns/op 23288.81 MB/s
BenchmarkIndexRune/64M-2 200 8386812 ns/op 8001.71 MB/s
BenchmarkIndexRuneASCII/10-2 200000000 6.88 ns/op 1454.39 MB/s
BenchmarkIndexRuneASCII/32-2 200000000 8.48 ns/op 3775.47 MB/s
BenchmarkIndexRuneASCII/4K-2 20000000 108 ns/op 37797.91 MB/s
BenchmarkIndexRuneASCII/4M-2 10000 184062 ns/op 22787.35 MB/s
BenchmarkIndexRuneASCII/64M-2 200 8227400 ns/op 8156.75 MB/s
BenchmarkEqual/0-2 500000000 3.81 ns/op
BenchmarkEqual/1-2 300000000 5.53 ns/op 180.67 MB/s
BenchmarkEqual/6-2 300000000 5.54 ns/op 1082.53 MB/s
BenchmarkEqual/9-2 200000000 6.90 ns/op 1304.42 MB/s
BenchmarkEqual/15-2 200000000 6.79 ns/op 2210.21 MB/s
BenchmarkEqual/16-2 200000000 6.74 ns/op 2372.46 MB/s
BenchmarkEqual/20-2 200000000 7.65 ns/op 2615.39 MB/s
BenchmarkEqual/32-2 200000000 7.96 ns/op 4019.85 MB/s
BenchmarkEqual/4K-2 20000000 84.4 ns/op 48554.23 MB/s
BenchmarkEqual/4M-2 5000 373357 ns/op 11234.03 MB/s
BenchmarkEqual/64M-2 100 15819805 ns/op 4242.08 MB/s
BenchmarkEqualPort/1-2 200000000 6.21 ns/op 161.13 MB/s
BenchmarkEqualPort/6-2 200000000 9.93 ns/op 604.31 MB/s
BenchmarkEqualPort/32-2 50000000 29.7 ns/op 1077.42 MB/s
BenchmarkEqualPort/4K-2 500000 3135 ns/op 1306.26 MB/s
BenchmarkEqualPort/4M-2 500 3368547 ns/op 1245.14 MB/s
BenchmarkEqualPort/64M-2 30 54174353 ns/op 1238.76 MB/s
BenchmarkIndex/10-2 100000000 13.1 ns/op 761.77 MB/s
BenchmarkIndex/32-2 100000000 13.9 ns/op 2300.49 MB/s
BenchmarkIndex/4K-2 500000 3193 ns/op 1282.48 MB/s
BenchmarkIndex/4M-2 500 3258639 ns/op 1287.13 MB/s
BenchmarkIndex/64M-2 30 51947675 ns/op 1291.85 MB/s
BenchmarkIndexEasy/10-2 100000000 13.2 ns/op 758.84 MB/s
BenchmarkIndexEasy/32-2 100000000 13.6 ns/op 2346.69 MB/s
BenchmarkIndexEasy/4K-2 20000000 119 ns/op 34272.40 MB/s
BenchmarkIndexEasy/4M-2 10000 187266 ns/op 22397.52 MB/s
BenchmarkIndexEasy/64M-2 100 11543922 ns/op 5813.35 MB/s
BenchmarkCount/10-2 50000000 25.9 ns/op 386.38 MB/s
BenchmarkCount/32-2 50000000 27.9 ns/op 1148.48 MB/s
BenchmarkCount/4K-2 500000 3333 ns/op 1228.92 MB/s
BenchmarkCount/4M-2 500 3392140 ns/op 1236.48 MB/s
BenchmarkCount/64M-2 20 55687311 ns/op 1205.10 MB/s
BenchmarkCountEasy/10-2 50000000 25.5 ns/op 392.09 MB/s
BenchmarkCountEasy/32-2 50000000 28.5 ns/op 1121.13 MB/s
BenchmarkCountEasy/4K-2 10000000 136 ns/op 29997.30 MB/s
BenchmarkCountEasy/4M-2 10000 189551 ns/op 22127.47 MB/s
BenchmarkCountEasy/64M-2 100 11696067 ns/op 5737.73 MB/s
BenchmarkCountSingle/10-2 200000000 8.78 ns/op 1139.24 MB/s
BenchmarkCountSingle/32-2 200000000 10.4 ns/op 3077.56 MB/s
BenchmarkCountSingle/4K-2 20000000 116 ns/op 35133.42 MB/s
BenchmarkCountSingle/4M-2 10000 190497 ns/op 22017.58 MB/s
BenchmarkCountSingle/64M-2 200 8298502 ns/op 8086.86 MB/s
BenchmarkFields/ASCII/16-2 10000000 129 ns/op 123.91 MB/s 80 B/op 1 allocs/op
BenchmarkFields/ASCII/256-2 2000000 930 ns/op 275.01 MB/s 768 B/op 1 allocs/op
BenchmarkFields/ASCII/4096-2 100000 12687 ns/op 322.84 MB/s 9472 B/op 1 allocs/op
BenchmarkFields/ASCII/65536-2 5000 281513 ns/op 232.80 MB/s 147456 B/op 1 allocs/op
BenchmarkFields/ASCII/1048576-2 300 4431266 ns/op 236.63 MB/s 2269184 B/op 1 allocs/op
BenchmarkFields/Mixed/16-2 5000000 261 ns/op 61.20 MB/s 96 B/op 1 allocs/op
BenchmarkFields/Mixed/256-2 500000 2512 ns/op 101.90 MB/s 768 B/op 1 allocs/op
BenchmarkFields/Mixed/4096-2 30000 47516 ns/op 86.20 MB/s 24832 B/op 5 allocs/op
BenchmarkFields/Mixed/65536-2 2000 784884 ns/op 83.50 MB/s 497280 B/op 12 allocs/op
BenchmarkFields/Mixed/1048576-2 100 13171606 ns/op 79.61 MB/s 9606784 B/op 24 allocs/op
BenchmarkFieldsFunc/ASCII/16-2 10000000 217 ns/op 73.53 MB/s 80 B/op 1 allocs/op
BenchmarkFieldsFunc/ASCII/256-2 1000000 2253 ns/op 113.62 MB/s 768 B/op 1 allocs/op
BenchmarkFieldsFunc/ASCII/4096-2 50000 38713 ns/op 105.80 MB/s 24832 B/op 5 allocs/op
BenchmarkFieldsFunc/ASCII/65536-2 2000 622147 ns/op 105.34 MB/s 497280 B/op 12 allocs/op
BenchmarkFieldsFunc/ASCII/1048576-2 100 10530021 ns/op 99.58 MB/s 9614976 B/op 24 allocs/op
BenchmarkFieldsFunc/Mixed/16-2 10000000 235 ns/op 67.99 MB/s 96 B/op 1 allocs/op
BenchmarkFieldsFunc/Mixed/256-2 1000000 2164 ns/op 118.26 MB/s 768 B/op 1 allocs/op
BenchmarkFieldsFunc/Mixed/4096-2 30000 42137 ns/op 97.21 MB/s 24832 B/op 5 allocs/op
BenchmarkFieldsFunc/Mixed/65536-2 2000 709385 ns/op 92.38 MB/s 497280 B/op 12 allocs/op
BenchmarkFieldsFunc/Mixed/1048576-2 100 11883200 ns/op 88.24 MB/s 9606784 B/op 24 allocs/op
BenchmarkTrimSpace-2 30000000 47.7 ns/op
BenchmarkSplitEmptySeparator-2 100 19667168 ns/op
BenchmarkSplitSingleByteSeparator-2 1000 2132560 ns/op
BenchmarkSplitMultiByteSeparator-2 1000 1755322 ns/op
BenchmarkSplitNSingleByteSeparator-2 5000000 280 ns/op
BenchmarkSplitNMultiByteSeparator-2 5000000 354 ns/op
BenchmarkRepeat-2 20000000 99.4 ns/op
BenchmarkBytesCompare/1-2 200000000 6.09 ns/op
BenchmarkBytesCompare/2-2 200000000 6.11 ns/op
BenchmarkBytesCompare/4-2 200000000 6.06 ns/op
BenchmarkBytesCompare/8-2 300000000 4.99 ns/op
BenchmarkBytesCompare/16-2 300000000 5.31 ns/op
BenchmarkBytesCompare/32-2 200000000 6.17 ns/op
BenchmarkBytesCompare/64-2 200000000 7.20 ns/op
BenchmarkBytesCompare/128-2 200000000 8.74 ns/op
BenchmarkBytesCompare/256-2 100000000 12.1 ns/op
BenchmarkBytesCompare/512-2 100000000 18.8 ns/op
BenchmarkBytesCompare/1024-2 50000000 32.0 ns/op
BenchmarkBytesCompare/2048-2 30000000 57.8 ns/op
BenchmarkIndexAnyASCII/1:1-2 200000000 6.27 ns/op
BenchmarkIndexAnyASCII/1:2-2 200000000 7.25 ns/op
BenchmarkIndexAnyASCII/1:4-2 200000000 9.08 ns/op
BenchmarkIndexAnyASCII/1:8-2 100000000 10.7 ns/op
BenchmarkIndexAnyASCII/1:16-2 100000000 14.9 ns/op
BenchmarkIndexAnyASCII/16:1-2 50000000 31.0 ns/op
BenchmarkIndexAnyASCII/16:2-2 50000000 31.8 ns/op
BenchmarkIndexAnyASCII/16:4-2 50000000 36.3 ns/op
BenchmarkIndexAnyASCII/16:8-2 30000000 43.7 ns/op
BenchmarkIndexAnyASCII/16:16-2 30000000 56.9 ns/op
BenchmarkIndexAnyASCII/256:1-2 5000000 244 ns/op
BenchmarkIndexAnyASCII/256:2-2 5000000 245 ns/op
BenchmarkIndexAnyASCII/256:4-2 5000000 251 ns/op
BenchmarkIndexAnyASCII/256:8-2 5000000 257 ns/op
BenchmarkIndexAnyASCII/256:16-2 5000000 272 ns/op
BenchmarkIndexAnyASCII/4096:1-2 500000 3576 ns/op
BenchmarkIndexAnyASCII/4096:2-2 500000 3595 ns/op
BenchmarkIndexAnyASCII/4096:4-2 500000 3582 ns/op
BenchmarkIndexAnyASCII/4096:8-2 500000 3569 ns/op
BenchmarkIndexAnyASCII/4096:16-2 500000 3626 ns/op
BenchmarkTrimASCII/1:1-2 20000000 67.0 ns/op
BenchmarkTrimASCII/1:2-2 20000000 97.8 ns/op
BenchmarkTrimASCII/1:4-2 20000000 102 ns/op
BenchmarkTrimASCII/1:8-2 20000000 113 ns/op
BenchmarkTrimASCII/1:16-2 10000000 123 ns/op
BenchmarkTrimASCII/16:1-2 10000000 124 ns/op
BenchmarkTrimASCII/16:2-2 10000000 150 ns/op
BenchmarkTrimASCII/16:4-2 10000000 155 ns/op
BenchmarkTrimASCII/16:8-2 10000000 164 ns/op
BenchmarkTrimASCII/16:16-2 10000000 175 ns/op
BenchmarkTrimASCII/256:1-2 1000000 1016 ns/op
BenchmarkTrimASCII/256:2-2 1000000 1014 ns/op
BenchmarkTrimASCII/256:4-2 1000000 1011 ns/op
BenchmarkTrimASCII/256:8-2 1000000 1032 ns/op
BenchmarkTrimASCII/256:16-2 1000000 1033 ns/op
BenchmarkTrimASCII/4096:1-2 100000 15395 ns/op
BenchmarkTrimASCII/4096:2-2 100000 14657 ns/op
BenchmarkTrimASCII/4096:4-2 100000 14562 ns/op
BenchmarkTrimASCII/4096:8-2 100000 14632 ns/op
BenchmarkTrimASCII/4096:16-2 100000 14468 ns/op
BenchmarkIndexPeriodic/IndexPeriodic2-2 200000 9468 ns/op
BenchmarkIndexPeriodic/IndexPeriodic4-2 200000 9429 ns/op
BenchmarkIndexPeriodic/IndexPeriodic8-2 10000 126013 ns/op
BenchmarkIndexPeriodic/IndexPeriodic16-2 20000 61682 ns/op
BenchmarkIndexPeriodic/IndexPeriodic32-2 50000 30331 ns/op
BenchmarkIndexPeriodic/IndexPeriodic64-2 100000 16383 ns/op
BenchmarkCompareBytesEqual-2 300000000 5.30 ns/op
BenchmarkCompareBytesToNil-2 300000000 4.19 ns/op
BenchmarkCompareBytesEmpty-2 500000000 3.80 ns/op
BenchmarkCompareBytesIdentical-2 500000000 3.80 ns/op
BenchmarkCompareBytesSameLength-2 300000000 5.28 ns/op
BenchmarkCompareBytesDifferentLength-2 300000000 5.32 ns/op
BenchmarkCompareBytesBigUnaligned-2 20000 85472 ns/op 12268.06 MB/s
BenchmarkCompareBytesBig-2 20000 86278 ns/op 12153.46 MB/s
BenchmarkCompareBytesBigIdentical-2 500000000 3.86 ns/op 271443698.01 MB/s
PASS
ok bytes 294.926s
PASS
ok cmd/addr2line 0.003s
goos: linux
goarch: amd64
pkg: cmd/api
BenchmarkAll-2 1 5129939513 ns/op
PASS
ok cmd/api 5.378s
? 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 690 ns/op
BenchmarkMulNeg2-2 2000000 699 ns/op
BenchmarkEfaceInteger-2 500000000 3.63 ns/op
PASS
ok cmd/compile/internal/gc 6.383s
? 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 64496 ns/op
BenchmarkCopyElim10-2 20000 68068 ns/op
BenchmarkCopyElim100-2 10000 111643 ns/op
BenchmarkCopyElim1000-2 3000 557004 ns/op
BenchmarkCopyElim10000-2 100 14794645 ns/op
BenchmarkCopyElim100000-2 5 207328832 ns/op
BenchmarkDeadCode/1-2 20000 69138 ns/op
BenchmarkDeadCode/10-2 20000 74034 ns/op
BenchmarkDeadCode/100-2 10000 110359 ns/op
BenchmarkDeadCode/1000-2 3000 575698 ns/op
BenchmarkDeadCode/10000-2 100 10334032 ns/op
BenchmarkDeadCode/100000-2 10 147274506 ns/op
BenchmarkDeadCode/200000-2 5 337447544 ns/op
BenchmarkDominatorsLinear-2 2000 963198 ns/op 10.38 MB/s
BenchmarkDominatorsFwdBack-2 1000 1607548 ns/op 6.22 MB/s
BenchmarkDominatorsManyPred-2 1000 1234583 ns/op 8.10 MB/s
BenchmarkDominatorsMaxPred-2 1000 1254971 ns/op 7.97 MB/s
BenchmarkDominatorsMaxPredVal-2 1000 1230682 ns/op 8.13 MB/s
BenchmarkFuse/1-2 10000 131189 ns/op
BenchmarkFuse/10-2 10000 161992 ns/op
BenchmarkFuse/100-2 5000 356114 ns/op
BenchmarkFuse/1000-2 1000 2230958 ns/op
BenchmarkFuse/10000-2 50 26006150 ns/op
BenchmarkNilCheckDeep1-2 2000000 611 ns/op 1.64 MB/s 101 B/op 6 allocs/op
BenchmarkNilCheckDeep10-2 1000000 1129 ns/op 8.86 MB/s 192 B/op 6 allocs/op
BenchmarkNilCheckDeep100-2 200000 6370 ns/op 15.70 MB/s 1168 B/op 6 allocs/op
BenchmarkNilCheckDeep1000-2 30000 57142 ns/op 17.50 MB/s 10304 B/op 6 allocs/op
BenchmarkNilCheckDeep10000-2 2000 928147 ns/op 10.77 MB/s 102505 B/op 6 allocs/op
BenchmarkDSEPass-2 10000 219079 ns/op 41200 B/op 8 allocs/op
BenchmarkDSEPassBlock-2 500 3393499 ns/op 559994 B/op 240 allocs/op
BenchmarkCSEPass-2 1000 2361517 ns/op 188640 B/op 9 allocs/op
BenchmarkCSEPassBlock-2 100 26881938 ns/op 3104404 B/op 1350 allocs/op
BenchmarkDeadcodePass-2 50000 39046 ns/op 10504 B/op 3 allocs/op
BenchmarkDeadcodePassBlock-2 3000 595987 ns/op 151758 B/op 15 allocs/op
BenchmarkMultiPass-2 10000 154624 ns/op 240024 B/op 11 allocs/op
BenchmarkMultiPassBlock-2 500 2950683 ns/op 3729194 B/op 330 allocs/op
PASS
ok cmd/compile/internal/ssa 94.612s
PASS
ok cmd/compile/internal/syntax 0.002s
goos: linux
goarch: amd64
pkg: cmd/compile/internal/test
BenchmarkDivconstI64-2 2000000000 1.27 ns/op
BenchmarkDivconstU64-2 2000000000 1.33 ns/op
BenchmarkDivconstI32-2 2000000000 0.96 ns/op
BenchmarkDivconstU32-2 2000000000 1.28 ns/op
BenchmarkDivconstI16-2 2000000000 1.00 ns/op
BenchmarkDivconstU16-2 2000000000 0.79 ns/op
BenchmarkDivconstI8-2 2000000000 0.98 ns/op
BenchmarkDivconstU8-2 2000000000 0.79 ns/op
PASS
ok cmd/compile/internal/test 17.645s
PASS
ok cmd/compile/internal/types 0.003s
? cmd/compile/internal/x86 [no test files]
PASS
ok cmd/cover 0.006s
? cmd/dist [no test files]
PASS
ok cmd/doc 0.007s
PASS
ok cmd/fix 0.003s
PASS
ok cmd/go 1.124s
? 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.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.005s
PASS
ok cmd/gofmt 0.003s
? cmd/internal/bio [no test files]
? cmd/internal/browser [no test files]
PASS
ok cmd/internal/buildid 0.003s
PASS
ok cmd/internal/dwarf 0.003s
PASS
ok cmd/internal/edit 0.003s
? cmd/internal/gcprog [no test files]
PASS
ok cmd/internal/goobj 0.368s
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.003s
? 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.461s
PASS
ok cmd/objdump 0.485s
PASS
ok cmd/pack 0.002s
? cmd/pprof [no test files]
? cmd/test2json [no test files]
PASS
ok cmd/trace 0.008s
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 7858645 ns/op 12.73 MB/s 3611989 B/op 40 allocs/op
BenchmarkDecodeTwain-2 50 26376434 ns/op 14.70 MB/s 3624582 B/op 40 allocs/op
BenchmarkDecodeRand-2 500 2446501 ns/op 6.70 MB/s 3643140 B/op 40 allocs/op
PASS
ok compress/bzip2 5.265s
goos: linux
goarch: amd64
pkg: compress/flate
BenchmarkDecode/Digits/Huffman/1e4-2 10000 153404 ns/op 65.19 MB/s 40620 B/op 5 allocs/op
BenchmarkDecode/Digits/Huffman/1e5-2 1000 1409716 ns/op 70.94 MB/s 40621 B/op 5 allocs/op
BenchmarkDecode/Digits/Huffman/1e6-2 100 14032186 ns/op 71.26 MB/s 40697 B/op 5 allocs/op
BenchmarkDecode/Digits/Speed/1e4-2 10000 162172 ns/op 61.66 MB/s 40698 B/op 8 allocs/op
BenchmarkDecode/Digits/Speed/1e5-2 1000 1596581 ns/op 62.63 MB/s 40909 B/op 11 allocs/op
BenchmarkDecode/Digits/Speed/1e6-2 100 15917852 ns/op 62.82 MB/s 44457 B/op 73 allocs/op
BenchmarkDecode/Digits/Default/1e4-2 10000 162046 ns/op 61.71 MB/s 40666 B/op 7 allocs/op
BenchmarkDecode/Digits/Default/1e5-2 1000 1556059 ns/op 64.26 MB/s 40909 B/op 13 allocs/op
BenchmarkDecode/Digits/Default/1e6-2 100 15546465 ns/op 64.32 MB/s 44873 B/op 79 allocs/op
BenchmarkDecode/Digits/Compression/1e4-2 10000 162832 ns/op 61.41 MB/s 40668 B/op 7 allocs/op
BenchmarkDecode/Digits/Compression/1e5-2 1000 1560643 ns/op 64.08 MB/s 40909 B/op 13 allocs/op
BenchmarkDecode/Digits/Compression/1e6-2 100 15625207 ns/op 64.00 MB/s 44873 B/op 79 allocs/op
BenchmarkDecode/Twain/Huffman/1e4-2 10000 179409 ns/op 55.74 MB/s 42005 B/op 15 allocs/op
BenchmarkDecode/Twain/Huffman/1e5-2 1000 1591929 ns/op 62.82 MB/s 43518 B/op 20 allocs/op
BenchmarkDecode/Twain/Huffman/1e6-2 100 15867436 ns/op 63.02 MB/s 71758 B/op 134 allocs/op
BenchmarkDecode/Twain/Speed/1e4-2 10000 171617 ns/op 58.27 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Speed/1e5-2 1000 1519690 ns/op 65.80 MB/s 45110 B/op 30 allocs/op
BenchmarkDecode/Twain/Speed/1e6-2 100 15116094 ns/op 66.15 MB/s 72594 B/op 193 allocs/op
BenchmarkDecode/Twain/Default/1e4-2 10000 162479 ns/op 61.55 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Default/1e5-2 1000 1306391 ns/op 76.55 MB/s 44342 B/op 28 allocs/op
BenchmarkDecode/Twain/Default/1e6-2 100 12673303 ns/op 78.91 MB/s 70914 B/op 199 allocs/op
BenchmarkDecode/Twain/Compression/1e4-2 10000 163692 ns/op 61.09 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Compression/1e5-2 1000 1295665 ns/op 77.18 MB/s 43318 B/op 28 allocs/op
BenchmarkDecode/Twain/Compression/1e6-2 100 12562538 ns/op 79.60 MB/s 69220 B/op 196 allocs/op
BenchmarkEncode/Digits/Huffman/1e4-2 30000 43250 ns/op 231.21 MB/s
BenchmarkEncode/Digits/Huffman/1e5-2 3000 419879 ns/op 238.16 MB/s
BenchmarkEncode/Digits/Huffman/1e6-2 300 4215777 ns/op 237.20 MB/s
BenchmarkEncode/Digits/Speed/1e4-2 10000 189805 ns/op 52.69 MB/s
BenchmarkEncode/Digits/Speed/1e5-2 1000 1826101 ns/op 54.76 MB/s
BenchmarkEncode/Digits/Speed/1e6-2 100 17917132 ns/op 55.81 MB/s
BenchmarkEncode/Digits/Default/1e4-2 5000 354154 ns/op 28.24 MB/s
BenchmarkEncode/Digits/Default/1e5-2 300 5681800 ns/op 17.60 MB/s
BenchmarkEncode/Digits/Default/1e6-2 20 60093637 ns/op 16.64 MB/s
BenchmarkEncode/Digits/Compression/1e4-2 5000 359534 ns/op 27.81 MB/s
BenchmarkEncode/Digits/Compression/1e5-2 300 5566678 ns/op 17.96 MB/s
BenchmarkEncode/Digits/Compression/1e6-2 20 60219124 ns/op 16.61 MB/s
BenchmarkEncode/Twain/Huffman/1e4-2 20000 58651 ns/op 170.50 MB/s
BenchmarkEncode/Twain/Huffman/1e5-2 3000 487395 ns/op 205.17 MB/s
BenchmarkEncode/Twain/Huffman/1e6-2 300 4899143 ns/op 204.12 MB/s
BenchmarkEncode/Twain/Speed/1e4-2 10000 218147 ns/op 45.84 MB/s
BenchmarkEncode/Twain/Speed/1e5-2 1000 1795147 ns/op 55.71 MB/s
BenchmarkEncode/Twain/Speed/1e6-2 100 17625261 ns/op 56.74 MB/s
BenchmarkEncode/Twain/Default/1e4-2 3000 444049 ns/op 22.52 MB/s
BenchmarkEncode/Twain/Default/1e5-2 200 7067864 ns/op 14.15 MB/s
BenchmarkEncode/Twain/Default/1e6-2 20 77365436 ns/op 12.93 MB/s
BenchmarkEncode/Twain/Compression/1e4-2 3000 450674 ns/op 22.19 MB/s
BenchmarkEncode/Twain/Compression/1e5-2 200 8062451 ns/op 12.40 MB/s
BenchmarkEncode/Twain/Compression/1e6-2 20 88081677 ns/op 11.35 MB/s
PASS
ok compress/flate 82.255s
PASS
ok compress/gzip 0.002s
goos: linux
goarch: amd64
pkg: compress/lzw
BenchmarkDecoder/1e4-2 10000 118636 ns/op 84.29 MB/s
BenchmarkDecoder/1e5-2 2000 1133723 ns/op 88.20 MB/s
BenchmarkDecoder/1e6-2 100 11207332 ns/op 89.23 MB/s
BenchmarkEncoder/1e4-2 10000 225004 ns/op 44.44 MB/s
BenchmarkEncoder/1e5-2 1000 2111730 ns/op 47.35 MB/s
BenchmarkEncoder/1e6-2 100 20957634 ns/op 47.72 MB/s
PASS
ok compress/lzw 11.489s
PASS
ok compress/zlib 0.002s
goos: linux
goarch: amd64
pkg: container/heap
BenchmarkDup-2 3000 435796 ns/op
PASS
ok container/heap 1.358s
PASS
ok container/list 0.002s
PASS
ok container/ring 0.002s
goos: linux
goarch: amd64
pkg: context
BenchmarkWithTimeout/concurrency=40-2 300000 5521 ns/op
BenchmarkWithTimeout/concurrency=4000-2 200000 6727 ns/op
BenchmarkWithTimeout/concurrency=400000-2 200000 8324 ns/op
BenchmarkCancelTree/depth=1/Root=Background-2 10000000 132 ns/op
BenchmarkCancelTree/depth=1/Root=OpenCanceler-2 2000000 842 ns/op
BenchmarkCancelTree/depth=1/Root=ClosedCanceler-2 5000000 387 ns/op
BenchmarkCancelTree/depth=10/Root=Background-2 300000 4857 ns/op
BenchmarkCancelTree/depth=10/Root=OpenCanceler-2 200000 6561 ns/op
BenchmarkCancelTree/depth=10/Root=ClosedCanceler-2 1000000 2249 ns/op
BenchmarkCancelTree/depth=100/Root=Background-2 30000 50698 ns/op
BenchmarkCancelTree/depth=100/Root=OpenCanceler-2 20000 63136 ns/op
BenchmarkCancelTree/depth=100/Root=ClosedCanceler-2 100000 20536 ns/op
BenchmarkCancelTree/depth=1000/Root=Background-2 3000 535448 ns/op
BenchmarkCancelTree/depth=1000/Root=OpenCanceler-2 2000 668237 ns/op
BenchmarkCancelTree/depth=1000/Root=ClosedCanceler-2 10000 211829 ns/op
PASS
ok context 29.930s
PASS
ok crypto 0.002s
goos: linux
goarch: amd64
pkg: crypto/aes
BenchmarkEncrypt-2 100000000 14.5 ns/op 1100.21 MB/s
BenchmarkDecrypt-2 100000000 13.9 ns/op 1154.01 MB/s
BenchmarkExpand-2 20000000 80.0 ns/op
PASS
ok crypto/aes 4.556s
goos: linux
goarch: amd64
pkg: crypto/cipher
BenchmarkAESGCMSeal1K-2 5000000 352 ns/op 2904.79 MB/s
BenchmarkAESGCMOpen1K-2 5000000 335 ns/op 3056.49 MB/s
BenchmarkAESGCMSign8K-2 1000000 1231 ns/op 6652.43 MB/s
BenchmarkAESGCMSeal8K-2 1000000 2129 ns/op 3846.55 MB/s
BenchmarkAESGCMOpen8K-2 1000000 2056 ns/op 3983.02 MB/s
BenchmarkAESCFBEncrypt1K-2 500000 2737 ns/op 372.24 MB/s
BenchmarkAESCFBDecrypt1K-2 500000 2661 ns/op 382.92 MB/s
BenchmarkAESOFB1K-2 1000000 1551 ns/op 656.82 MB/s
BenchmarkAESCTR1K-2 1000000 1740 ns/op 585.36 MB/s
BenchmarkAESCBCEncrypt1K-2 500000 2468 ns/op 414.80 MB/s
BenchmarkAESCBCDecrypt1K-2 1000000 1845 ns/op 554.93 MB/s
PASS
ok crypto/cipher 18.827s
goos: linux
goarch: amd64
pkg: crypto/des
BenchmarkEncrypt-2 10000000 169 ns/op 47.25 MB/s
BenchmarkDecrypt-2 10000000 175 ns/op 45.54 MB/s
BenchmarkTDESEncrypt-2 3000000 408 ns/op 19.58 MB/s
BenchmarkTDESDecrypt-2 3000000 406 ns/op 19.70 MB/s
PASS
ok crypto/des 7.073s
PASS
ok crypto/dsa 0.002s
goos: linux
goarch: amd64
pkg: crypto/ecdsa
BenchmarkSignP256-2 50000 30147 ns/op 2896 B/op 34 allocs/op
BenchmarkSignP384-2 300 4795605 ns/op 2322626 B/op 17470 allocs/op
BenchmarkVerifyP256-2 20000 92631 ns/op 976 B/op 17 allocs/op
BenchmarkKeyGeneration-2 100000 18652 ns/op 688 B/op 13 allocs/op
PASS
ok crypto/ecdsa 8.637s
goos: linux
goarch: amd64
pkg: crypto/elliptic
BenchmarkBaseMult-2 2000 916586 ns/op 224 B/op 5 allocs/op
BenchmarkBaseMultP256-2 100000 17297 ns/op 288 B/op 6 allocs/op
BenchmarkScalarMultP256-2 20000 71668 ns/op 256 B/op 5 allocs/op
PASS
ok crypto/elliptic 6.014s
goos: linux
goarch: amd64
pkg: crypto/hmac
BenchmarkHMACSHA256_1K-2 300000 4703 ns/op 217.72 MB/s
BenchmarkHMACSHA256_32-2 1000000 1174 ns/op 27.24 MB/s
PASS
ok crypto/hmac 2.651s
? crypto/internal/cipherhw [no test files]
goos: linux
goarch: amd64
pkg: crypto/md5
BenchmarkHash8Bytes-2 10000000 195 ns/op 40.89 MB/s
BenchmarkHash1K-2 1000000 2104 ns/op 486.53 MB/s
BenchmarkHash8K-2 100000 15567 ns/op 526.23 MB/s
BenchmarkHash8BytesUnaligned-2 10000000 193 ns/op 41.31 MB/s
BenchmarkHash1KUnaligned-2 1000000 2114 ns/op 484.16 MB/s
BenchmarkHash8KUnaligned-2 100000 15647 ns/op 523.52 MB/s
PASS
ok crypto/md5 11.992s
goos: linux
goarch: amd64
pkg: crypto/rand
BenchmarkPrime-2 30 143032954 ns/op
PASS
ok crypto/rand 4.345s
goos: linux
goarch: amd64
pkg: crypto/rc4
BenchmarkRC4_128-2 5000000 304 ns/op 420.24 MB/s
BenchmarkRC4_1K-2 500000 2842 ns/op 360.29 MB/s
BenchmarkRC4_8K-2 100000 22787 ns/op 355.28 MB/s
PASS
ok crypto/rc4 5.796s
goos: linux
goarch: amd64
pkg: crypto/rsa
BenchmarkRSA2048Decrypt-2 500 2474217 ns/op
BenchmarkRSA2048Sign-2 500 3006366 ns/op
Benchmark3PrimeRSA2048Decrypt-2 1000 1453622 ns/op
PASS
ok crypto/rsa 4.905s
goos: linux
goarch: amd64
pkg: crypto/sha1
BenchmarkHash8Bytes-2 10000000 205 ns/op 38.92 MB/s
BenchmarkHash320Bytes-2 2000000 836 ns/op 382.33 MB/s
BenchmarkHash1K-2 1000000 1695 ns/op 604.01 MB/s
BenchmarkHash8K-2 200000 11019 ns/op 743.39 MB/s
PASS
ok crypto/sha1 8.819s
goos: linux
goarch: amd64
pkg: crypto/sha256
BenchmarkHash8Bytes-2 5000000 319 ns/op 25.05 MB/s
BenchmarkHash1K-2 500000 3736 ns/op 274.07 MB/s
BenchmarkHash8K-2 50000 27616 ns/op 296.63 MB/s
PASS
ok crypto/sha256 5.493s
goos: linux
goarch: amd64
pkg: crypto/sha512
BenchmarkHash8Bytes-2 3000000 436 ns/op 18.32 MB/s
BenchmarkHash1K-2 500000 2800 ns/op 365.67 MB/s
BenchmarkHash8K-2 100000 18959 ns/op 432.07 MB/s
PASS
ok crypto/sha512 5.277s
goos: linux
goarch: amd64
pkg: crypto/subtle
BenchmarkConstantTimeByteEq-2 2000000000 1.33 ns/op
BenchmarkConstantTimeEq-2 2000000000 1.13 ns/op
BenchmarkConstantTimeLessOrEq-2 2000000000 1.52 ns/op
PASS
ok crypto/subtle 8.367s
goos: linux
goarch: amd64
pkg: crypto/tls
BenchmarkHandshakeServer/RSA-2 1000 1346708 ns/op
BenchmarkHandshakeServer/ECDHE-P256-RSA-2 1000 1513722 ns/op
BenchmarkHandshakeServer/ECDHE-P256-ECDSA-P256-2 5000 325488 ns/op
BenchmarkHandshakeServer/ECDHE-X25519-ECDSA-P256-2 5000 326939 ns/op
BenchmarkHandshakeServer/ECDHE-P521-ECDSA-P521-2 50 25259742 ns/op
BenchmarkThroughput/MaxPacket/1MB-2 300 4250733 ns/op 246.68 MB/s
BenchmarkThroughput/MaxPacket/2MB-2 200 6483415 ns/op 323.46 MB/s
BenchmarkThroughput/MaxPacket/4MB-2 100 10938567 ns/op 383.44 MB/s
BenchmarkThroughput/MaxPacket/8MB-2 100 19725104 ns/op 425.28 MB/s
BenchmarkThroughput/MaxPacket/16MB-2 50 37075940 ns/op 452.51 MB/s
BenchmarkThroughput/MaxPacket/32MB-2 20 72391312 ns/op 463.51 MB/s
BenchmarkThroughput/MaxPacket/64MB-2 10 141384683 ns/op 474.65 MB/s
BenchmarkThroughput/DynamicPacket/1MB-2 300 4517350 ns/op 232.12 MB/s
BenchmarkThroughput/DynamicPacket/2MB-2 200 6654127 ns/op 315.17 MB/s
BenchmarkThroughput/DynamicPacket/4MB-2 100 11036524 ns/op 380.04 MB/s
BenchmarkThroughput/DynamicPacket/8MB-2 100 19761937 ns/op 424.48 MB/s
BenchmarkThroughput/DynamicPacket/16MB-2 50 37163333 ns/op 451.45 MB/s
BenchmarkThroughput/DynamicPacket/32MB-2 20 71764460 ns/op 467.56 MB/s
BenchmarkThroughput/DynamicPacket/64MB-2 10 141921317 ns/op 472.86 MB/s
BenchmarkLatency/MaxPacket/200kbps-2 2 695791638 ns/op
BenchmarkLatency/MaxPacket/500kbps-2 5 280270723 ns/op
BenchmarkLatency/MaxPacket/1000kbps-2 10 141790389 ns/op
BenchmarkLatency/MaxPacket/2000kbps-2 20 72512707 ns/op
BenchmarkLatency/MaxPacket/5000kbps-2 50 30807574 ns/op
BenchmarkLatency/DynamicPacket/200kbps-2 10 135565325 ns/op
BenchmarkLatency/DynamicPacket/500kbps-2 20 56258876 ns/op
BenchmarkLatency/DynamicPacket/1000kbps-2 50 29902091 ns/op
BenchmarkLatency/DynamicPacket/2000kbps-2 100 16630834 ns/op
BenchmarkLatency/DynamicPacket/5000kbps-2 200 8565812 ns/op
PASS
ok crypto/tls 49.311s
PASS
ok crypto/x509 0.003s
? crypto/x509/pkix [no test files]
goos: linux
goarch: amd64
pkg: database/sql
BenchmarkConcurrentDBExec-2 100 13658094 ns/op 2636216 B/op 15150 allocs/op
BenchmarkConcurrentStmtQuery-2 100 12252742 ns/op 2587198 B/op 18674 allocs/op
BenchmarkConcurrentStmtExec-2 200 10390385 ns/op 1911107 B/op 3708 allocs/op
BenchmarkConcurrentTxQuery-2 100 13496881 ns/op 2650477 B/op 21164 allocs/op
BenchmarkConcurrentTxExec-2 500 3024697 ns/op 600159 B/op 14650 allocs/op
BenchmarkConcurrentTxStmtQuery-2 500 3951515 ns/op 785840 B/op 19160 allocs/op
BenchmarkConcurrentTxStmtExec-2 2000 1021353 ns/op 117129 B/op 2676 allocs/op
BenchmarkConcurrentRandom-2 100 10715504 ns/op 1842278 B/op 14775 allocs/op
BenchmarkManyConcurrentQueries-2 50000 39742 ns/op 4272 B/op 22 allocs/op
PASS
ok database/sql 16.936s
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.004s
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 47365 ns/op 9872 B/op 421 allocs/op
PASS
ok encoding/asn1 1.920s
goos: linux
goarch: amd64
pkg: encoding/base32
BenchmarkEncodeToString-2 50000 32059 ns/op 255.52 MB/s
BenchmarkDecodeString-2 10000 108670 ns/op 120.66 MB/s
PASS
ok encoding/base32 3.019s
goos: linux
goarch: amd64
pkg: encoding/base64
BenchmarkEncodeToString-2 100000 17962 ns/op 456.06 MB/s
BenchmarkDecodeString/2-2 30000000 57.2 ns/op 69.97 MB/s
BenchmarkDecodeString/4-2 20000000 65.6 ns/op 121.96 MB/s
BenchmarkDecodeString/8-2 20000000 80.7 ns/op 148.61 MB/s
BenchmarkDecodeString/64-2 5000000 306 ns/op 286.92 MB/s
BenchmarkDecodeString/8192-2 50000 25142 ns/op 434.49 MB/s
PASS
ok encoding/base64 10.185s
goos: linux
goarch: amd64
pkg: encoding/binary
BenchmarkReadSlice1000Int32s-2 200000 6097 ns/op 655.99 MB/s
BenchmarkReadStruct-2 1000000 1535 ns/op 48.83 MB/s
BenchmarkReadInts-2 5000000 365 ns/op 82.01 MB/s
BenchmarkWriteInts-2 3000000 415 ns/op 72.20 MB/s
BenchmarkWriteSlice1000Int32s-2 200000 6195 ns/op 645.60 MB/s
BenchmarkPutUint16-2 2000000000 0.86 ns/op 2317.49 MB/s
BenchmarkPutUint32-2 2000000000 0.85 ns/op 4683.11 MB/s
BenchmarkPutUint64-2 2000000000 0.95 ns/op 8435.82 MB/s
BenchmarkLittleEndianPutUint16-2 2000000000 0.95 ns/op 2108.56 MB/s
BenchmarkLittleEndianPutUint32-2 2000000000 1.52 ns/op 2630.27 MB/s
BenchmarkLittleEndianPutUint64-2 2000000000 0.76 ns/op 10538.15 MB/s
BenchmarkPutUvarint32-2 50000000 29.9 ns/op 133.87 MB/s
BenchmarkPutUvarint64-2 20000000 77.0 ns/op 103.93 MB/s
PASS
ok encoding/binary 23.554s
goos: linux
goarch: amd64
pkg: encoding/csv
BenchmarkRead-2 500000 2664 ns/op 664 B/op 18 allocs/op
BenchmarkReadWithFieldsPerRecord-2 500000 2656 ns/op 664 B/op 18 allocs/op
BenchmarkReadWithoutFieldsPerRecord-2 500000 2661 ns/op 664 B/op 18 allocs/op
BenchmarkReadLargeFields-2 300000 4678 ns/op 3936 B/op 24 allocs/op
BenchmarkReadReuseRecord-2 1000000 1522 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordWithFieldsPerRecord-2 1000000 1518 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordWithoutFieldsPerRecord-2 1000000 1533 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordLargeFields-2 500000 3574 ns/op 2976 B/op 12 allocs/op
PASS
ok encoding/csv 11.983s
goos: linux
goarch: amd64
pkg: encoding/gob
BenchmarkEndToEndPipe-2 500000 2686 ns/op
BenchmarkEndToEndByteBuffer-2 1000000 1522 ns/op
BenchmarkEndToEndSliceByteBuffer-2 10000 153941 ns/op
BenchmarkEncodeComplex128Slice-2 100000 21385 ns/op
BenchmarkEncodeFloat64Slice-2 200000 10373 ns/op
BenchmarkEncodeInt32Slice-2 200000 11771 ns/op
BenchmarkEncodeStringSlice-2 100000 12137 ns/op
BenchmarkEncodeInterfaceSlice-2 3000 483091 ns/op
BenchmarkDecodeComplex128Slice-2 30000 51370 ns/op
BenchmarkDecodeFloat64Slice-2 50000 36069 ns/op
BenchmarkDecodeInt32Slice-2 50000 34263 ns/op
BenchmarkDecodeStringSlice-2 20000 68305 ns/op
BenchmarkDecodeInterfaceSlice-2 2000 709067 ns/op
BenchmarkDecodeMap-2 5000 243584 ns/op
PASS
ok encoding/gob 25.397s
goos: linux
goarch: amd64
pkg: encoding/hex
BenchmarkEncode/256-2 3000000 424 ns/op
BenchmarkEncode/1024-2 1000000 1658 ns/op
BenchmarkEncode/4096-2 200000 6616 ns/op
BenchmarkEncode/16384-2 50000 26571 ns/op
PASS
ok encoding/hex 6.374s
goos: linux
goarch: amd64
pkg: encoding/json
BenchmarkCodeEncoder-2 100 13032919 ns/op 148.89 MB/s
BenchmarkCodeMarshal-2 100 14341786 ns/op 135.30 MB/s
BenchmarkCodeDecoder-2 20 56259641 ns/op 34.49 MB/s
BenchmarkUnicodeDecoder-2 3000000 517 ns/op 27.05 MB/s
BenchmarkDecoderStream-2 5000000 388 ns/op
BenchmarkCodeUnmarshal-2 30 57622241 ns/op 33.68 MB/s
BenchmarkCodeUnmarshalReuse-2 30 54191496 ns/op
BenchmarkUnmarshalString-2 3000000 600 ns/op
BenchmarkUnmarshalFloat64-2 3000000 533 ns/op
BenchmarkUnmarshalInt64-2 3000000 465 ns/op
BenchmarkIssue10335-2 2000000 725 ns/op 320 B/op 4 allocs/op
BenchmarkUnmapped-2 500000 2649 ns/op 568 B/op 18 allocs/op
BenchmarkNumberIsValid-2 100000000 23.8 ns/op
BenchmarkNumberIsValidRegexp-2 2000000 754 ns/op
BenchmarkSkipValue-2 100 16117691 ns/op 124.21 MB/s
BenchmarkEncoderEncode-2 5000000 384 ns/op 0 B/op 0 allocs/op
PASS
ok encoding/json 31.017s
goos: linux
goarch: amd64
pkg: encoding/pem
BenchmarkEncode-2 10000 112601 ns/op 582.01 MB/s
BenchmarkDecode-2 5000 347798 ns/op 255.27 MB/s
PASS
ok encoding/pem 2.919s
goos: linux
goarch: amd64
pkg: encoding/xml
BenchmarkMarshal-2 100000 17184 ns/op 5776 B/op 23 allocs/op
BenchmarkUnmarshal-2 30000 43629 ns/op 8608 B/op 189 allocs/op
PASS
ok encoding/xml 3.646s
PASS
ok errors 0.002s
goos: linux
goarch: amd64
pkg: expvar
BenchmarkIntAdd-2 200000000 7.60 ns/op
BenchmarkIntSet-2 200000000 7.64 ns/op
BenchmarkFloatAdd-2 100000000 17.7 ns/op
BenchmarkFloatSet-2 200000000 7.65 ns/op
BenchmarkStringSet-2 30000000 47.8 ns/op
BenchmarkMapSet-2 10000000 180 ns/op
BenchmarkMapSetDifferent-2 2000000 771 ns/op
BenchmarkMapSetString-2 10000000 180 ns/op
BenchmarkMapAddSame-2 1000000 1119 ns/op
BenchmarkMapAddDifferent-2 500000 3226 ns/op
BenchmarkMapAddSameSteadyState-2 30000000 42.2 ns/op
BenchmarkMapAddDifferentSteadyState-2 10000000 180 ns/op
BenchmarkRealworldExpvarUsage-2 500000 3785 ns/op
PASS
ok expvar 24.485s
PASS
ok flag 0.014s
goos: linux
goarch: amd64
pkg: fmt
BenchmarkSprintfPadding-2 5000000 371 ns/op
BenchmarkSprintfEmpty-2 50000000 34.2 ns/op
BenchmarkSprintfString-2 20000000 96.0 ns/op
BenchmarkSprintfTruncateString-2 10000000 178 ns/op
BenchmarkSprintfSlowParsingPath-2 20000000 114 ns/op
BenchmarkSprintfQuoteString-2 2000000 674 ns/op
BenchmarkSprintfInt-2 20000000 99.5 ns/op
BenchmarkSprintfIntInt-2 10000000 150 ns/op
BenchmarkSprintfPrefixedInt-2 10000000 176 ns/op
BenchmarkSprintfFloat-2 5000000 271 ns/op
BenchmarkSprintfComplex-2 2000000 720 ns/op
BenchmarkSprintfBoolean-2 20000000 83.2 ns/op
BenchmarkSprintfHexString-2 10000000 181 ns/op
BenchmarkSprintfHexBytes-2 5000000 242 ns/op
BenchmarkSprintfBytes-2 3000000 525 ns/op
BenchmarkSprintfStringer-2 3000000 479 ns/op
BenchmarkSprintfStructure-2 1000000 1479 ns/op
BenchmarkManyArgs-2 3000000 552 ns/op
BenchmarkFprintInt-2 20000000 88.1 ns/op
BenchmarkFprintfBytes-2 10000000 125 ns/op
BenchmarkFprintIntNoAlloc-2 20000000 84.2 ns/op
BenchmarkScanInts-2 3000 458382 ns/op
BenchmarkScanRecursiveInt-2 30 49573601 ns/op
BenchmarkScanRecursiveIntReaderWrapper-2 30 50737688 ns/op
PASS
ok fmt 44.520s
PASS
ok go/ast 0.002s
PASS
ok go/build 0.003s
goos: linux
goarch: amd64
pkg: go/constant
BenchmarkStringAdd/1-2 10000000 233 ns/op 272 B/op 3 allocs/op
BenchmarkStringAdd/4-2 1000000 1117 ns/op 1360 B/op 11 allocs/op
BenchmarkStringAdd/16-2 500000 3437 ns/op 5072 B/op 25 allocs/op
BenchmarkStringAdd/64-2 200000 12195 ns/op 18384 B/op 75 allocs/op
BenchmarkStringAdd/256-2 30000 47311 ns/op 75216 B/op 269 allocs/op
BenchmarkStringAdd/1024-2 10000 183486 ns/op 295120 B/op 1039 allocs/op
BenchmarkStringAdd/4096-2 2000 892108 ns/op 1268560 B/op 4116 allocs/op
BenchmarkStringAdd/16384-2 200 7071993 ns/op 5446480 B/op 16410 allocs/op
BenchmarkStringAdd/65536-2 30 43846355 ns/op 22084432 B/op 65568 allocs/op
PASS
ok go/constant 17.137s
PASS
ok go/doc 0.005s
PASS
ok go/format 0.002s
PASS
ok go/importer 0.003s
PASS
ok go/internal/gccgoimporter 0.002s
PASS
ok go/internal/gcimporter 0.002s
PASS
ok go/internal/srcimporter 0.003s
goos: linux
goarch: amd64
pkg: go/parser
BenchmarkParse-2 300 4191025 ns/op 15.21 MB/s
PASS
ok go/parser 1.685s
goos: linux
goarch: amd64
pkg: go/printer
BenchmarkPrint-2 200 9804024 ns/op
PASS
ok go/printer 2.478s
goos: linux
goarch: amd64
pkg: go/scanner
BenchmarkScan-2 100000 22268 ns/op
BenchmarkScanFile-2 5000 335763 ns/op 52.80 MB/s
PASS
ok go/scanner 4.173s
PASS
ok go/token 0.002s
PASS
ok go/types 0.003s
PASS
ok hash 0.002s
goos: linux
goarch: amd64
pkg: hash/adler32
BenchmarkAdler32KB-2 3000000 532 ns/op 1922.70 MB/s
PASS
ok hash/adler32 2.141s
goos: linux
goarch: amd64
pkg: hash/crc32
BenchmarkCRC32/poly=IEEE/size=15/align=0-2 30000000 55.6 ns/op 269.92 MB/s
BenchmarkCRC32/poly=IEEE/size=15/align=1-2 30000000 55.6 ns/op 270.01 MB/s
BenchmarkCRC32/poly=IEEE/size=40/align=0-2 30000000 56.4 ns/op 708.83 MB/s
BenchmarkCRC32/poly=IEEE/size=40/align=1-2 30000000 56.2 ns/op 712.17 MB/s
BenchmarkCRC32/poly=IEEE/size=512/align=0-2 20000000 64.1 ns/op 7985.71 MB/s
BenchmarkCRC32/poly=IEEE/size=512/align=1-2 20000000 61.6 ns/op 8305.59 MB/s
BenchmarkCRC32/poly=IEEE/size=1kB/align=0-2 20000000 99.0 ns/op 10341.54 MB/s
BenchmarkCRC32/poly=IEEE/size=1kB/align=1-2 20000000 99.3 ns/op 10308.03 MB/s
BenchmarkCRC32/poly=IEEE/size=4kB/align=0-2 5000000 296 ns/op 13825.69 MB/s
BenchmarkCRC32/poly=IEEE/size=4kB/align=1-2 5000000 286 ns/op 14306.99 MB/s
BenchmarkCRC32/poly=IEEE/size=32kB/align=0-2 1000000 2069 ns/op 15837.22 MB/s
BenchmarkCRC32/poly=IEEE/size=32kB/align=1-2 1000000 2037 ns/op 16084.00 MB/s
BenchmarkCRC32/poly=Castagnoli/size=15/align=0-2 100000000 18.0 ns/op 831.28 MB/s
BenchmarkCRC32/poly=Castagnoli/size=15/align=1-2 100000000 20.0 ns/op 750.80 MB/s
BenchmarkCRC32/poly=Castagnoli/size=40/align=0-2 100000000 20.3 ns/op 1969.06 MB/s
BenchmarkCRC32/poly=Castagnoli/size=40/align=1-2 100000000 22.5 ns/op 1774.06 MB/s
BenchmarkCRC32/poly=Castagnoli/size=512/align=0-2 30000000 48.4 ns/op 10582.14 MB/s
BenchmarkCRC32/poly=Castagnoli/size=512/align=1-2 30000000 52.9 ns/op 9680.47 MB/s
BenchmarkCRC32/poly=Castagnoli/size=1kB/align=0-2 20000000 81.7 ns/op 12532.21 MB/s
BenchmarkCRC32/poly=Castagnoli/size=1kB/align=1-2 20000000 89.3 ns/op 11465.00 MB/s
BenchmarkCRC32/poly=Castagnoli/size=4kB/align=0-2 10000000 218 ns/op 18754.43 MB/s
BenchmarkCRC32/poly=Castagnoli/size=4kB/align=1-2 10000000 227 ns/op 18027.63 MB/s
BenchmarkCRC32/poly=Castagnoli/size=32kB/align=0-2 1000000 1726 ns/op 18979.76 MB/s
BenchmarkCRC32/poly=Castagnoli/size=32kB/align=1-2 1000000 1729 ns/op 18948.41 MB/s
BenchmarkCRC32/poly=Koopman/size=15/align=0-2 30000000 42.1 ns/op 356.49 MB/s
BenchmarkCRC32/poly=Koopman/size=15/align=1-2 30000000 41.9 ns/op 358.09 MB/s
BenchmarkCRC32/poly=Koopman/size=40/align=0-2 20000000 114 ns/op 350.85 MB/s
BenchmarkCRC32/poly=Koopman/size=40/align=1-2 20000000 114 ns/op 350.14 MB/s
BenchmarkCRC32/poly=Koopman/size=512/align=0-2 1000000 1556 ns/op 328.92 MB/s
BenchmarkCRC32/poly=Koopman/size=512/align=1-2 1000000 1559 ns/op 328.24 MB/s
BenchmarkCRC32/poly=Koopman/size=1kB/align=0-2 500000 3126 ns/op 327.48 MB/s
BenchmarkCRC32/poly=Koopman/size=1kB/align=1-2 500000 3123 ns/op 327.80 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 12490 ns/op 327.93 MB/s
BenchmarkCRC32/poly=Koopman/size=32kB/align=0-2 20000 100183 ns/op 327.08 MB/s
BenchmarkCRC32/poly=Koopman/size=32kB/align=1-2 10000 100391 ns/op 326.40 MB/s
PASS
ok hash/crc32 65.281s
goos: linux
goarch: amd64
pkg: hash/crc64
BenchmarkCrc64/ISO64KB-2 30000 47414 ns/op 1382.18 MB/s
BenchmarkCrc64/ISO4KB-2 500000 3019 ns/op 1356.46 MB/s
BenchmarkCrc64/ISO1KB-2 2000000 771 ns/op 1327.25 MB/s
BenchmarkCrc64/ECMA64KB-2 30000 47303 ns/op 1385.43 MB/s
BenchmarkCrc64/Random64KB-2 30000 54175 ns/op 1209.69 MB/s
BenchmarkCrc64/Random16KB-2 30000 49765 ns/op 329.22 MB/s
PASS
ok hash/crc64 11.850s
goos: linux
goarch: amd64
pkg: hash/fnv
BenchmarkFnv32KB-2 1000000 1531 ns/op 668.82 MB/s
BenchmarkFnv32aKB-2 1000000 1538 ns/op 665.72 MB/s
BenchmarkFnv64KB-2 1000000 1543 ns/op 663.37 MB/s
BenchmarkFnv64aKB-2 1000000 1607 ns/op 637.19 MB/s
BenchmarkFnv128KB-2 300000 5913 ns/op 173.17 MB/s
BenchmarkFnv128aKB-2 300000 5556 ns/op 184.27 MB/s
PASS
ok hash/fnv 9.847s
goos: linux
goarch: amd64
pkg: html
BenchmarkEscape-2 100000 19501 ns/op
BenchmarkEscapeNone-2 300000 4225 ns/op
BenchmarkUnescape-2 100000 23706 ns/op
BenchmarkUnescapeNone-2 20000000 115 ns/op
BenchmarkUnescapeSparse-2 500000 2935 ns/op
BenchmarkUnescapeDense-2 100000 18131 ns/op