-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo1.10.3.linux-amd64-bench.txt
2698 lines (2686 loc) · 158 KB
/
go1.10.3.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 11195 ns/op 1424 B/op 56 allocs/op
Benchmark/Writer/GNU-2 100000 13067 ns/op 1616 B/op 62 allocs/op
Benchmark/Writer/PAX-2 100000 22715 ns/op 2960 B/op 114 allocs/op
Benchmark/Reader/USTAR-2 200000 11659 ns/op 1427 B/op 33 allocs/op
Benchmark/Reader/GNU-2 200000 7048 ns/op 1387 B/op 31 allocs/op
Benchmark/Reader/PAX-2 100000 24362 ns/op 3543 B/op 68 allocs/op
PASS
ok archive/tar 11.763s
goos: linux
goarch: amd64
pkg: archive/zip
BenchmarkCompressedZipGarbage-2 100 18923645 ns/op 13913 B/op 44 allocs/op
BenchmarkZip64Test-2 10 175718983 ns/op
BenchmarkZip64TestSizes/4096-2 50000 39338 ns/op
BenchmarkZip64TestSizes/1048576-2 1000 2010957 ns/op
BenchmarkZip64TestSizes/67108864-2 10 128668614 ns/op
PASS
ok archive/zip 10.735s
goos: linux
goarch: amd64
pkg: bufio
BenchmarkReaderCopyOptimal-2 10000000 236 ns/op
BenchmarkReaderCopyUnoptimal-2 5000000 420 ns/op
BenchmarkReaderCopyNoWriteTo-2 200000 9173 ns/op
BenchmarkReaderWriteToOptimal-2 2000000 740 ns/op
BenchmarkWriterCopyOptimal-2 10000000 247 ns/op
BenchmarkWriterCopyUnoptimal-2 5000000 358 ns/op
BenchmarkWriterCopyNoReadFrom-2 200000 8783 ns/op
BenchmarkReaderEmpty-2 1000000 1942 ns/op 4224 B/op 3 allocs/op
BenchmarkWriterEmpty-2 1000000 1736 ns/op 4096 B/op 1 allocs/op
BenchmarkWriterFlush-2 100000000 17.7 ns/op 0 B/op 0 allocs/op
PASS
ok bufio 21.479s
? builtin [no test files]
goos: linux
goarch: amd64
pkg: bytes
BenchmarkReadString-2 200000 6773 ns/op 4837.39 MB/s
BenchmarkWriteByte-2 100000 17084 ns/op 239.75 MB/s
BenchmarkWriteRune-2 50000 39680 ns/op 309.68 MB/s
BenchmarkBufferNotEmptyWriteRead-2 5000 289155 ns/op
BenchmarkBufferFullSmallReads-2 20000 67066 ns/op
BenchmarkIndexByte/10-2 300000000 4.25 ns/op 2351.70 MB/s
BenchmarkIndexByte/32-2 300000000 5.36 ns/op 5974.77 MB/s
BenchmarkIndexByte/4K-2 20000000 109 ns/op 37543.71 MB/s
BenchmarkIndexByte/4M-2 10000 178426 ns/op 23507.17 MB/s
BenchmarkIndexByte/64M-2 200 8695252 ns/op 7717.87 MB/s
BenchmarkIndexBytePortable/10-2 200000000 7.57 ns/op 1321.74 MB/s
BenchmarkIndexBytePortable/32-2 50000000 37.9 ns/op 845.42 MB/s
BenchmarkIndexBytePortable/4K-2 1000000 1591 ns/op 2573.94 MB/s
BenchmarkIndexBytePortable/4M-2 1000 1633594 ns/op 2567.53 MB/s
BenchmarkIndexBytePortable/64M-2 50 27342217 ns/op 2454.40 MB/s
BenchmarkIndexRune/10-2 100000000 19.7 ns/op 507.14 MB/s
BenchmarkIndexRune/32-2 100000000 21.6 ns/op 1481.66 MB/s
BenchmarkIndexRune/4K-2 10000000 129 ns/op 31671.79 MB/s
BenchmarkIndexRune/4M-2 10000 180237 ns/op 23270.99 MB/s
BenchmarkIndexRune/64M-2 200 8834613 ns/op 7596.13 MB/s
BenchmarkIndexRuneASCII/10-2 200000000 6.83 ns/op 1464.64 MB/s
BenchmarkIndexRuneASCII/32-2 200000000 8.52 ns/op 3757.22 MB/s
BenchmarkIndexRuneASCII/4K-2 20000000 111 ns/op 36575.38 MB/s
BenchmarkIndexRuneASCII/4M-2 10000 183406 ns/op 22868.87 MB/s
BenchmarkIndexRuneASCII/64M-2 200 8924509 ns/op 7519.61 MB/s
BenchmarkEqual/0-2 500000000 3.80 ns/op
BenchmarkEqual/1-2 300000000 4.94 ns/op 202.57 MB/s
BenchmarkEqual/6-2 300000000 4.94 ns/op 1214.20 MB/s
BenchmarkEqual/9-2 300000000 5.67 ns/op 1587.10 MB/s
BenchmarkEqual/15-2 300000000 5.68 ns/op 2642.26 MB/s
BenchmarkEqual/16-2 300000000 5.68 ns/op 2815.45 MB/s
BenchmarkEqual/20-2 200000000 6.79 ns/op 2946.74 MB/s
BenchmarkEqual/32-2 200000000 7.59 ns/op 4217.96 MB/s
BenchmarkEqual/4K-2 20000000 84.0 ns/op 48783.74 MB/s
BenchmarkEqual/4M-2 5000 373412 ns/op 11232.37 MB/s
BenchmarkEqual/64M-2 100 15050089 ns/op 4459.03 MB/s
BenchmarkEqualPort/1-2 300000000 5.27 ns/op 189.70 MB/s
BenchmarkEqualPort/6-2 200000000 9.62 ns/op 623.88 MB/s
BenchmarkEqualPort/32-2 50000000 30.0 ns/op 1067.76 MB/s
BenchmarkEqualPort/4K-2 500000 3123 ns/op 1311.14 MB/s
BenchmarkEqualPort/4M-2 500 3318242 ns/op 1264.01 MB/s
BenchmarkEqualPort/64M-2 30 54712474 ns/op 1226.57 MB/s
BenchmarkIndex/10-2 100000000 13.6 ns/op 733.31 MB/s
BenchmarkIndex/32-2 100000000 14.4 ns/op 2214.70 MB/s
BenchmarkIndex/4K-2 300000 4684 ns/op 874.43 MB/s
BenchmarkIndex/4M-2 300 4832788 ns/op 867.88 MB/s
BenchmarkIndex/64M-2 20 77318041 ns/op 867.96 MB/s
BenchmarkIndexEasy/10-2 100000000 12.5 ns/op 798.68 MB/s
BenchmarkIndexEasy/32-2 100000000 14.2 ns/op 2249.02 MB/s
BenchmarkIndexEasy/4K-2 10000000 122 ns/op 33532.31 MB/s
BenchmarkIndexEasy/4M-2 10000 180995 ns/op 23173.57 MB/s
BenchmarkIndexEasy/64M-2 200 9414506 ns/op 7128.24 MB/s
BenchmarkCount/10-2 100000000 23.4 ns/op 426.90 MB/s
BenchmarkCount/32-2 50000000 26.7 ns/op 1197.67 MB/s
BenchmarkCount/4K-2 300000 4712 ns/op 869.14 MB/s
BenchmarkCount/4M-2 300 4797263 ns/op 874.31 MB/s
BenchmarkCount/64M-2 20 77220043 ns/op 869.06 MB/s
BenchmarkCountEasy/10-2 100000000 23.0 ns/op 435.36 MB/s
BenchmarkCountEasy/32-2 50000000 26.5 ns/op 1209.16 MB/s
BenchmarkCountEasy/4K-2 10000000 133 ns/op 30580.16 MB/s
BenchmarkCountEasy/4M-2 10000 173185 ns/op 24218.53 MB/s
BenchmarkCountEasy/64M-2 200 9388400 ns/op 7148.06 MB/s
BenchmarkCountSingle/10-2 200000000 8.77 ns/op 1140.27 MB/s
BenchmarkCountSingle/32-2 200000000 9.96 ns/op 3213.80 MB/s
BenchmarkCountSingle/4K-2 20000000 116 ns/op 35042.12 MB/s
BenchmarkCountSingle/4M-2 10000 176359 ns/op 23782.69 MB/s
BenchmarkCountSingle/64M-2 200 9860970 ns/op 6805.50 MB/s
BenchmarkFields/ASCII/16-2 10000000 127 ns/op 125.95 MB/s 80 B/op 1 allocs/op
BenchmarkFields/ASCII/256-2 2000000 977 ns/op 261.99 MB/s 768 B/op 1 allocs/op
BenchmarkFields/ASCII/4096-2 100000 13225 ns/op 309.71 MB/s 9472 B/op 1 allocs/op
BenchmarkFields/ASCII/65536-2 5000 281566 ns/op 232.75 MB/s 147456 B/op 1 allocs/op
BenchmarkFields/ASCII/1048576-2 300 4539758 ns/op 230.98 MB/s 2269184 B/op 1 allocs/op
BenchmarkFields/Mixed/16-2 5000000 256 ns/op 62.33 MB/s 96 B/op 1 allocs/op
BenchmarkFields/Mixed/256-2 500000 2652 ns/op 96.50 MB/s 768 B/op 1 allocs/op
BenchmarkFields/Mixed/4096-2 30000 51903 ns/op 78.92 MB/s 24832 B/op 5 allocs/op
BenchmarkFields/Mixed/65536-2 2000 845232 ns/op 77.54 MB/s 497280 B/op 12 allocs/op
BenchmarkFields/Mixed/1048576-2 100 14496547 ns/op 72.33 MB/s 9606784 B/op 24 allocs/op
BenchmarkFieldsFunc/ASCII/16-2 10000000 211 ns/op 75.66 MB/s 80 B/op 1 allocs/op
BenchmarkFieldsFunc/ASCII/256-2 1000000 2231 ns/op 114.70 MB/s 768 B/op 1 allocs/op
BenchmarkFieldsFunc/ASCII/4096-2 50000 37929 ns/op 107.99 MB/s 24832 B/op 5 allocs/op
BenchmarkFieldsFunc/ASCII/65536-2 2000 620591 ns/op 105.60 MB/s 497280 B/op 12 allocs/op
BenchmarkFieldsFunc/ASCII/1048576-2 100 10687664 ns/op 98.11 MB/s 9614976 B/op 24 allocs/op
BenchmarkFieldsFunc/Mixed/16-2 10000000 220 ns/op 72.64 MB/s 96 B/op 1 allocs/op
BenchmarkFieldsFunc/Mixed/256-2 1000000 2164 ns/op 118.28 MB/s 768 B/op 1 allocs/op
BenchmarkFieldsFunc/Mixed/4096-2 30000 42321 ns/op 96.78 MB/s 24832 B/op 5 allocs/op
BenchmarkFieldsFunc/Mixed/65536-2 2000 705809 ns/op 92.85 MB/s 497280 B/op 12 allocs/op
BenchmarkFieldsFunc/Mixed/1048576-2 100 11988264 ns/op 87.47 MB/s 9606784 B/op 24 allocs/op
BenchmarkTrimSpace-2 30000000 49.4 ns/op
BenchmarkSplitEmptySeparator-2 100 19770456 ns/op
BenchmarkSplitSingleByteSeparator-2 1000 2108921 ns/op
BenchmarkSplitMultiByteSeparator-2 1000 1766651 ns/op
BenchmarkSplitNSingleByteSeparator-2 5000000 277 ns/op
BenchmarkSplitNMultiByteSeparator-2 5000000 356 ns/op
BenchmarkRepeat-2 20000000 97.8 ns/op
BenchmarkBytesCompare/1-2 200000000 6.08 ns/op
BenchmarkBytesCompare/2-2 200000000 6.05 ns/op
BenchmarkBytesCompare/4-2 200000000 6.04 ns/op
BenchmarkBytesCompare/8-2 300000000 4.93 ns/op
BenchmarkBytesCompare/16-2 300000000 4.94 ns/op
BenchmarkBytesCompare/32-2 200000000 6.11 ns/op
BenchmarkBytesCompare/64-2 200000000 7.27 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 32.0 ns/op
BenchmarkBytesCompare/2048-2 30000000 57.9 ns/op
BenchmarkIndexAnyASCII/1:1-2 200000000 6.79 ns/op
BenchmarkIndexAnyASCII/1:2-2 200000000 7.26 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.6 ns/op
BenchmarkIndexAnyASCII/16:2-2 50000000 31.8 ns/op
BenchmarkIndexAnyASCII/16:4-2 50000000 36.4 ns/op
BenchmarkIndexAnyASCII/16:8-2 30000000 43.5 ns/op
BenchmarkIndexAnyASCII/16:16-2 30000000 57.0 ns/op
BenchmarkIndexAnyASCII/256:1-2 5000000 243 ns/op
BenchmarkIndexAnyASCII/256:2-2 5000000 246 ns/op
BenchmarkIndexAnyASCII/256:4-2 5000000 250 ns/op
BenchmarkIndexAnyASCII/256:8-2 5000000 258 ns/op
BenchmarkIndexAnyASCII/256:16-2 5000000 273 ns/op
BenchmarkIndexAnyASCII/4096:1-2 500000 3600 ns/op
BenchmarkIndexAnyASCII/4096:2-2 500000 3530 ns/op
BenchmarkIndexAnyASCII/4096:4-2 500000 3559 ns/op
BenchmarkIndexAnyASCII/4096:8-2 500000 3557 ns/op
BenchmarkIndexAnyASCII/4096:16-2 500000 3553 ns/op
BenchmarkTrimASCII/1:1-2 20000000 66.9 ns/op
BenchmarkTrimASCII/1:2-2 20000000 98.4 ns/op
BenchmarkTrimASCII/1:4-2 20000000 103 ns/op
BenchmarkTrimASCII/1:8-2 20000000 111 ns/op
BenchmarkTrimASCII/1:16-2 10000000 123 ns/op
BenchmarkTrimASCII/16:1-2 20000000 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 175 ns/op
BenchmarkTrimASCII/256:1-2 1000000 1014 ns/op
BenchmarkTrimASCII/256:2-2 1000000 1004 ns/op
BenchmarkTrimASCII/256:4-2 1000000 1011 ns/op
BenchmarkTrimASCII/256:8-2 1000000 1015 ns/op
BenchmarkTrimASCII/256:16-2 1000000 1032 ns/op
BenchmarkTrimASCII/4096:1-2 100000 15067 ns/op
BenchmarkTrimASCII/4096:2-2 100000 14540 ns/op
BenchmarkTrimASCII/4096:4-2 100000 14535 ns/op
BenchmarkTrimASCII/4096:8-2 100000 14676 ns/op
BenchmarkTrimASCII/4096:16-2 100000 14611 ns/op
BenchmarkIndexPeriodic/IndexPeriodic2-2 200000 8985 ns/op
BenchmarkIndexPeriodic/IndexPeriodic4-2 200000 8956 ns/op
BenchmarkIndexPeriodic/IndexPeriodic8-2 10000 126755 ns/op
BenchmarkIndexPeriodic/IndexPeriodic16-2 20000 61663 ns/op
BenchmarkIndexPeriodic/IndexPeriodic32-2 50000 30707 ns/op
BenchmarkIndexPeriodic/IndexPeriodic64-2 100000 16601 ns/op
BenchmarkCompareBytesEqual-2 300000000 5.35 ns/op
BenchmarkCompareBytesToNil-2 300000000 4.20 ns/op
BenchmarkCompareBytesEmpty-2 500000000 4.13 ns/op
BenchmarkCompareBytesIdentical-2 500000000 3.94 ns/op
BenchmarkCompareBytesSameLength-2 300000000 5.29 ns/op
BenchmarkCompareBytesDifferentLength-2 300000000 5.36 ns/op
BenchmarkCompareBytesBigUnaligned-2 20000 89871 ns/op 11667.65 MB/s
BenchmarkCompareBytesBig-2 20000 88744 ns/op 11815.73 MB/s
BenchmarkCompareBytesBigIdentical-2 500000000 3.84 ns/op 273397581.89 MB/s
PASS
ok bytes 302.935s
PASS
ok cmd/addr2line 0.004s
goos: linux
goarch: amd64
pkg: cmd/api
BenchmarkAll-2 1 5174453026 ns/op
PASS
ok cmd/api 5.415s
? 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.008s
? 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 686 ns/op
BenchmarkMulNeg2-2 2000000 695 ns/op
BenchmarkEfaceInteger-2 500000000 3.63 ns/op
PASS
ok cmd/compile/internal/gc 6.374s
? 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 69779 ns/op
BenchmarkCopyElim10-2 20000 78306 ns/op
BenchmarkCopyElim100-2 10000 123430 ns/op
BenchmarkCopyElim1000-2 3000 579571 ns/op
BenchmarkCopyElim10000-2 100 15283027 ns/op
BenchmarkCopyElim100000-2 5 201681973 ns/op
BenchmarkDeadCode/1-2 20000 67336 ns/op
BenchmarkDeadCode/10-2 20000 80056 ns/op
BenchmarkDeadCode/100-2 10000 120098 ns/op
BenchmarkDeadCode/1000-2 2000 615442 ns/op
BenchmarkDeadCode/10000-2 100 11206428 ns/op
BenchmarkDeadCode/100000-2 10 158934335 ns/op
BenchmarkDeadCode/200000-2 3 344163698 ns/op
BenchmarkDominatorsLinear-2 2000 966882 ns/op 10.34 MB/s
BenchmarkDominatorsFwdBack-2 1000 1622986 ns/op 6.16 MB/s
BenchmarkDominatorsManyPred-2 1000 1313742 ns/op 7.61 MB/s
BenchmarkDominatorsMaxPred-2 1000 1253282 ns/op 7.98 MB/s
BenchmarkDominatorsMaxPredVal-2 1000 1322718 ns/op 7.56 MB/s
BenchmarkFuse/1-2 10000 135985 ns/op
BenchmarkFuse/10-2 10000 167951 ns/op
BenchmarkFuse/100-2 5000 364806 ns/op
BenchmarkFuse/1000-2 1000 2244129 ns/op
BenchmarkFuse/10000-2 50 26686812 ns/op
BenchmarkNilCheckDeep1-2 2000000 603 ns/op 1.66 MB/s 101 B/op 6 allocs/op
BenchmarkNilCheckDeep10-2 1000000 1081 ns/op 9.25 MB/s 192 B/op 6 allocs/op
BenchmarkNilCheckDeep100-2 200000 6000 ns/op 16.67 MB/s 1168 B/op 6 allocs/op
BenchmarkNilCheckDeep1000-2 30000 54008 ns/op 18.52 MB/s 10304 B/op 6 allocs/op
BenchmarkNilCheckDeep10000-2 2000 923174 ns/op 10.83 MB/s 102504 B/op 6 allocs/op
BenchmarkDSEPass-2 10000 212346 ns/op 41200 B/op 8 allocs/op
BenchmarkDSEPassBlock-2 500 3370566 ns/op 559994 B/op 240 allocs/op
BenchmarkCSEPass-2 1000 2357430 ns/op 188640 B/op 9 allocs/op
BenchmarkCSEPassBlock-2 100 27425915 ns/op 3104404 B/op 1350 allocs/op
BenchmarkDeadcodePass-2 30000 40103 ns/op 10505 B/op 3 allocs/op
BenchmarkDeadcodePassBlock-2 3000 628748 ns/op 151758 B/op 15 allocs/op
BenchmarkMultiPass-2 10000 122222 ns/op 240024 B/op 11 allocs/op
BenchmarkMultiPassBlock-2 500 2965289 ns/op 3729194 B/op 330 allocs/op
PASS
ok cmd/compile/internal/ssa 89.096s
PASS
ok cmd/compile/internal/syntax 0.003s
goos: linux
goarch: amd64
pkg: cmd/compile/internal/test
BenchmarkDivconstI64-2 2000000000 1.27 ns/op
BenchmarkDivconstU64-2 2000000000 1.53 ns/op
BenchmarkDivconstI32-2 2000000000 0.96 ns/op
BenchmarkDivconstU32-2 2000000000 1.24 ns/op
BenchmarkDivconstI16-2 2000000000 0.95 ns/op
BenchmarkDivconstU16-2 2000000000 0.77 ns/op
BenchmarkDivconstI8-2 2000000000 0.98 ns/op
BenchmarkDivconstU8-2 2000000000 0.77 ns/op
PASS
ok cmd/compile/internal/test 17.804s
PASS
ok cmd/compile/internal/types 0.003s
? cmd/compile/internal/x86 [no test files]
PASS
ok cmd/cover 0.005s
? cmd/dist [no test files]
PASS
ok cmd/doc 0.006s
PASS
ok cmd/fix 0.003s
PASS
ok cmd/go 2.493s
? cmd/go/internal/base [no test files]
? cmd/go/internal/bug [no test files]
PASS
ok cmd/go/internal/cache 0.003s
? 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.009s
? cmd/go/internal/help [no test files]
? cmd/go/internal/list [no test files]
PASS
ok cmd/go/internal/load 0.004s
? 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.006s
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.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.003s
? 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.003s
? 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.003s
PASS
ok cmd/link 0.004s
? 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.460s
PASS
ok cmd/objdump 0.471s
PASS
ok cmd/pack 0.003s
? cmd/pprof [no test files]
? cmd/test2json [no test files]
PASS
ok cmd/trace 0.008s
PASS
ok cmd/vet 0.005s
PASS
ok cmd/vet/internal/cfg 0.003s
? cmd/vet/internal/whitelist [no test files]
goos: linux
goarch: amd64
pkg: compress/bzip2
BenchmarkDecodeDigits-2 200 7350603 ns/op 13.60 MB/s 3611987 B/op 40 allocs/op
BenchmarkDecodeTwain-2 50 24549594 ns/op 15.80 MB/s 3624581 B/op 40 allocs/op
BenchmarkDecodeRand-2 500 2501011 ns/op 6.55 MB/s 3643147 B/op 40 allocs/op
PASS
ok compress/bzip2 5.061s
goos: linux
goarch: amd64
pkg: compress/flate
BenchmarkDecode/Digits/Huffman/1e4-2 10000 155147 ns/op 64.45 MB/s 40620 B/op 5 allocs/op
BenchmarkDecode/Digits/Huffman/1e5-2 1000 1424449 ns/op 70.20 MB/s 40621 B/op 5 allocs/op
BenchmarkDecode/Digits/Huffman/1e6-2 100 14076973 ns/op 71.04 MB/s 40697 B/op 5 allocs/op
BenchmarkDecode/Digits/Speed/1e4-2 10000 162237 ns/op 61.64 MB/s 40700 B/op 8 allocs/op
BenchmarkDecode/Digits/Speed/1e5-2 1000 1598721 ns/op 62.55 MB/s 40909 B/op 11 allocs/op
BenchmarkDecode/Digits/Speed/1e6-2 100 15825696 ns/op 63.19 MB/s 44457 B/op 73 allocs/op
BenchmarkDecode/Digits/Default/1e4-2 10000 163212 ns/op 61.27 MB/s 40666 B/op 7 allocs/op
BenchmarkDecode/Digits/Default/1e5-2 1000 1592158 ns/op 62.81 MB/s 40909 B/op 13 allocs/op
BenchmarkDecode/Digits/Default/1e6-2 100 15687667 ns/op 63.74 MB/s 44873 B/op 79 allocs/op
BenchmarkDecode/Digits/Compression/1e4-2 10000 174283 ns/op 57.38 MB/s 40669 B/op 7 allocs/op
BenchmarkDecode/Digits/Compression/1e5-2 1000 1686966 ns/op 59.28 MB/s 40909 B/op 13 allocs/op
BenchmarkDecode/Digits/Compression/1e6-2 100 16872873 ns/op 59.27 MB/s 44873 B/op 79 allocs/op
BenchmarkDecode/Twain/Huffman/1e4-2 10000 191451 ns/op 52.23 MB/s 42005 B/op 15 allocs/op
BenchmarkDecode/Twain/Huffman/1e5-2 1000 1684424 ns/op 59.37 MB/s 43518 B/op 20 allocs/op
BenchmarkDecode/Twain/Huffman/1e6-2 100 16714678 ns/op 59.83 MB/s 71758 B/op 134 allocs/op
BenchmarkDecode/Twain/Speed/1e4-2 10000 188828 ns/op 52.96 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Speed/1e5-2 1000 1625206 ns/op 61.53 MB/s 45110 B/op 30 allocs/op
BenchmarkDecode/Twain/Speed/1e6-2 100 16216889 ns/op 61.66 MB/s 72594 B/op 193 allocs/op
BenchmarkDecode/Twain/Default/1e4-2 10000 169271 ns/op 59.08 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Default/1e5-2 1000 1295436 ns/op 77.19 MB/s 44342 B/op 28 allocs/op
BenchmarkDecode/Twain/Default/1e6-2 100 12579172 ns/op 79.50 MB/s 70996 B/op 199 allocs/op
BenchmarkDecode/Twain/Compression/1e4-2 10000 164176 ns/op 60.91 MB/s 41268 B/op 17 allocs/op
BenchmarkDecode/Twain/Compression/1e5-2 1000 1301578 ns/op 76.83 MB/s 43318 B/op 28 allocs/op
BenchmarkDecode/Twain/Compression/1e6-2 100 12597473 ns/op 79.38 MB/s 69220 B/op 196 allocs/op
BenchmarkEncode/Digits/Huffman/1e4-2 30000 44786 ns/op 223.28 MB/s
BenchmarkEncode/Digits/Huffman/1e5-2 3000 431087 ns/op 231.97 MB/s
BenchmarkEncode/Digits/Huffman/1e6-2 300 4386456 ns/op 227.97 MB/s
BenchmarkEncode/Digits/Speed/1e4-2 10000 191619 ns/op 52.19 MB/s
BenchmarkEncode/Digits/Speed/1e5-2 1000 1815091 ns/op 55.09 MB/s
BenchmarkEncode/Digits/Speed/1e6-2 100 18089711 ns/op 55.28 MB/s
BenchmarkEncode/Digits/Default/1e4-2 5000 357188 ns/op 28.00 MB/s
BenchmarkEncode/Digits/Default/1e5-2 300 5689311 ns/op 17.58 MB/s
BenchmarkEncode/Digits/Default/1e6-2 20 60103530 ns/op 16.64 MB/s
BenchmarkEncode/Digits/Compression/1e4-2 5000 360318 ns/op 27.75 MB/s
BenchmarkEncode/Digits/Compression/1e5-2 300 5659282 ns/op 17.67 MB/s
BenchmarkEncode/Digits/Compression/1e6-2 20 60949517 ns/op 16.41 MB/s
BenchmarkEncode/Twain/Huffman/1e4-2 20000 64639 ns/op 154.71 MB/s
BenchmarkEncode/Twain/Huffman/1e5-2 3000 550790 ns/op 181.56 MB/s
BenchmarkEncode/Twain/Huffman/1e6-2 300 5019654 ns/op 199.22 MB/s
BenchmarkEncode/Twain/Speed/1e4-2 10000 220340 ns/op 45.38 MB/s
BenchmarkEncode/Twain/Speed/1e5-2 1000 1813539 ns/op 55.14 MB/s
BenchmarkEncode/Twain/Speed/1e6-2 100 17802039 ns/op 56.17 MB/s
BenchmarkEncode/Twain/Default/1e4-2 3000 449584 ns/op 22.24 MB/s
BenchmarkEncode/Twain/Default/1e5-2 200 7181235 ns/op 13.93 MB/s
BenchmarkEncode/Twain/Default/1e6-2 20 77818861 ns/op 12.85 MB/s
BenchmarkEncode/Twain/Compression/1e4-2 3000 453267 ns/op 22.06 MB/s
BenchmarkEncode/Twain/Compression/1e5-2 200 7981087 ns/op 12.53 MB/s
BenchmarkEncode/Twain/Compression/1e6-2 20 87161621 ns/op 11.47 MB/s
PASS
ok compress/flate 84.260s
PASS
ok compress/gzip 0.010s
goos: linux
goarch: amd64
pkg: compress/lzw
BenchmarkDecoder/1e4-2 10000 119264 ns/op 83.85 MB/s
BenchmarkDecoder/1e5-2 2000 1147136 ns/op 87.17 MB/s
BenchmarkDecoder/1e6-2 100 11340738 ns/op 88.18 MB/s
BenchmarkEncoder/1e4-2 10000 228061 ns/op 43.85 MB/s
BenchmarkEncoder/1e5-2 1000 2142716 ns/op 46.67 MB/s
BenchmarkEncoder/1e6-2 100 21148119 ns/op 47.29 MB/s
PASS
ok compress/lzw 11.618s
PASS
ok compress/zlib 0.003s
goos: linux
goarch: amd64
pkg: container/heap
BenchmarkDup-2 3000 435615 ns/op
PASS
ok container/heap 1.357s
PASS
ok container/list 0.003s
PASS
ok container/ring 0.003s
goos: linux
goarch: amd64
pkg: context
BenchmarkWithTimeout/concurrency=40-2 300000 5609 ns/op
BenchmarkWithTimeout/concurrency=4000-2 200000 6762 ns/op
BenchmarkWithTimeout/concurrency=400000-2 300000 8817 ns/op
BenchmarkCancelTree/depth=1/Root=Background-2 10000000 137 ns/op
BenchmarkCancelTree/depth=1/Root=OpenCanceler-2 2000000 838 ns/op
BenchmarkCancelTree/depth=1/Root=ClosedCanceler-2 5000000 397 ns/op
BenchmarkCancelTree/depth=10/Root=Background-2 300000 4978 ns/op
BenchmarkCancelTree/depth=10/Root=OpenCanceler-2 200000 6709 ns/op
BenchmarkCancelTree/depth=10/Root=ClosedCanceler-2 1000000 2271 ns/op
BenchmarkCancelTree/depth=100/Root=Background-2 30000 51675 ns/op
BenchmarkCancelTree/depth=100/Root=OpenCanceler-2 20000 63214 ns/op
BenchmarkCancelTree/depth=100/Root=ClosedCanceler-2 100000 20897 ns/op
BenchmarkCancelTree/depth=1000/Root=Background-2 3000 541957 ns/op
BenchmarkCancelTree/depth=1000/Root=OpenCanceler-2 2000 677507 ns/op
BenchmarkCancelTree/depth=1000/Root=ClosedCanceler-2 10000 217748 ns/op
PASS
ok context 31.249s
PASS
ok crypto 0.002s
goos: linux
goarch: amd64
pkg: crypto/aes
BenchmarkEncrypt-2 100000000 14.6 ns/op 1094.94 MB/s
BenchmarkDecrypt-2 100000000 13.8 ns/op 1161.54 MB/s
BenchmarkExpand-2 20000000 77.3 ns/op
PASS
ok crypto/aes 4.498s
goos: linux
goarch: amd64
pkg: crypto/cipher
BenchmarkAESGCMSeal1K-2 5000000 353 ns/op 2896.01 MB/s
BenchmarkAESGCMOpen1K-2 5000000 333 ns/op 3070.79 MB/s
BenchmarkAESGCMSign8K-2 1000000 1235 ns/op 6633.09 MB/s
BenchmarkAESGCMSeal8K-2 1000000 2118 ns/op 3867.63 MB/s
BenchmarkAESGCMOpen8K-2 1000000 2058 ns/op 3980.17 MB/s
BenchmarkAESCFBEncrypt1K-2 500000 2707 ns/op 376.36 MB/s
BenchmarkAESCFBDecrypt1K-2 500000 2623 ns/op 388.42 MB/s
BenchmarkAESOFB1K-2 1000000 1545 ns/op 659.31 MB/s
BenchmarkAESCTR1K-2 1000000 1746 ns/op 583.61 MB/s
BenchmarkAESCBCEncrypt1K-2 500000 2429 ns/op 421.56 MB/s
BenchmarkAESCBCDecrypt1K-2 1000000 1800 ns/op 568.71 MB/s
PASS
ok crypto/cipher 18.714s
goos: linux
goarch: amd64
pkg: crypto/des
BenchmarkEncrypt-2 10000000 169 ns/op 47.10 MB/s
BenchmarkDecrypt-2 10000000 171 ns/op 46.75 MB/s
BenchmarkTDESEncrypt-2 3000000 409 ns/op 19.54 MB/s
BenchmarkTDESDecrypt-2 3000000 407 ns/op 19.65 MB/s
PASS
ok crypto/des 7.050s
PASS
ok crypto/dsa 0.003s
goos: linux
goarch: amd64
pkg: crypto/ecdsa
BenchmarkSignP256-2 50000 30336 ns/op 2896 B/op 34 allocs/op
BenchmarkSignP384-2 300 4769449 ns/op 2330144 B/op 17527 allocs/op
BenchmarkVerifyP256-2 20000 93170 ns/op 976 B/op 17 allocs/op
BenchmarkKeyGeneration-2 100000 18748 ns/op 688 B/op 13 allocs/op
PASS
ok crypto/ecdsa 8.660s
goos: linux
goarch: amd64
pkg: crypto/elliptic
BenchmarkBaseMult-2 2000 917364 ns/op 224 B/op 5 allocs/op
BenchmarkBaseMultP256-2 100000 17331 ns/op 288 B/op 6 allocs/op
BenchmarkScalarMultP256-2 20000 71586 ns/op 256 B/op 5 allocs/op
PASS
ok crypto/elliptic 6.020s
goos: linux
goarch: amd64
pkg: crypto/hmac
BenchmarkHMACSHA256_1K-2 300000 4608 ns/op 222.21 MB/s
BenchmarkHMACSHA256_32-2 1000000 1169 ns/op 27.37 MB/s
PASS
ok crypto/hmac 2.617s
? crypto/internal/cipherhw [no test files]
goos: linux
goarch: amd64
pkg: crypto/md5
BenchmarkHash8Bytes-2 10000000 194 ns/op 41.17 MB/s
BenchmarkHash1K-2 1000000 2098 ns/op 487.97 MB/s
BenchmarkHash8K-2 100000 15508 ns/op 528.22 MB/s
BenchmarkHash8BytesUnaligned-2 10000000 194 ns/op 41.20 MB/s
BenchmarkHash1KUnaligned-2 1000000 2095 ns/op 488.74 MB/s
BenchmarkHash8KUnaligned-2 100000 15513 ns/op 528.04 MB/s
PASS
ok crypto/md5 11.938s
goos: linux
goarch: amd64
pkg: crypto/rand
BenchmarkPrime-2 20 116046715 ns/op
PASS
ok crypto/rand 2.388s
goos: linux
goarch: amd64
pkg: crypto/rc4
BenchmarkRC4_128-2 5000000 307 ns/op 416.22 MB/s
BenchmarkRC4_1K-2 500000 2826 ns/op 362.28 MB/s
BenchmarkRC4_8K-2 100000 22800 ns/op 355.07 MB/s
PASS
ok crypto/rc4 5.810s
goos: linux
goarch: amd64
pkg: crypto/rsa
BenchmarkRSA2048Decrypt-2 500 2480873 ns/op
BenchmarkRSA2048Sign-2 500 2999283 ns/op
Benchmark3PrimeRSA2048Decrypt-2 1000 1457194 ns/op
PASS
ok crypto/rsa 4.903s
goos: linux
goarch: amd64
pkg: crypto/sha1
BenchmarkHash8Bytes-2 10000000 205 ns/op 39.00 MB/s
BenchmarkHash320Bytes-2 2000000 836 ns/op 382.70 MB/s
BenchmarkHash1K-2 1000000 1692 ns/op 605.15 MB/s
BenchmarkHash8K-2 200000 11033 ns/op 742.48 MB/s
PASS
ok crypto/sha1 8.811s
goos: linux
goarch: amd64
pkg: crypto/sha256
BenchmarkHash8Bytes-2 5000000 322 ns/op 24.79 MB/s
BenchmarkHash1K-2 500000 3735 ns/op 274.13 MB/s
BenchmarkHash8K-2 50000 27530 ns/op 297.56 MB/s
PASS
ok crypto/sha256 5.518s
goos: linux
goarch: amd64
pkg: crypto/sha512
BenchmarkHash8Bytes-2 3000000 430 ns/op 18.57 MB/s
BenchmarkHash1K-2 500000 2798 ns/op 365.87 MB/s
BenchmarkHash8K-2 100000 18913 ns/op 433.14 MB/s
PASS
ok crypto/sha512 5.250s
goos: linux
goarch: amd64
pkg: crypto/subtle
BenchmarkConstantTimeByteEq-2 2000000000 1.32 ns/op
BenchmarkConstantTimeEq-2 2000000000 1.14 ns/op
BenchmarkConstantTimeLessOrEq-2 2000000000 1.51 ns/op
PASS
ok crypto/subtle 8.341s
goos: linux
goarch: amd64
pkg: crypto/tls
BenchmarkHandshakeServer/RSA-2 1000 1344224 ns/op
BenchmarkHandshakeServer/ECDHE-P256-RSA-2 1000 1522413 ns/op
BenchmarkHandshakeServer/ECDHE-P256-ECDSA-P256-2 5000 325847 ns/op
BenchmarkHandshakeServer/ECDHE-X25519-ECDSA-P256-2 5000 319706 ns/op
BenchmarkHandshakeServer/ECDHE-P521-ECDSA-P521-2 50 25153162 ns/op
BenchmarkThroughput/MaxPacket/1MB-2 300 4336142 ns/op 241.82 MB/s
BenchmarkThroughput/MaxPacket/2MB-2 200 6492157 ns/op 323.03 MB/s
BenchmarkThroughput/MaxPacket/4MB-2 100 11026267 ns/op 380.39 MB/s
BenchmarkThroughput/MaxPacket/8MB-2 100 19749928 ns/op 424.74 MB/s
BenchmarkThroughput/MaxPacket/16MB-2 50 37401881 ns/op 448.57 MB/s
BenchmarkThroughput/MaxPacket/32MB-2 20 72220758 ns/op 464.61 MB/s
BenchmarkThroughput/MaxPacket/64MB-2 10 141665803 ns/op 473.71 MB/s
BenchmarkThroughput/DynamicPacket/1MB-2 300 4429061 ns/op 236.75 MB/s
BenchmarkThroughput/DynamicPacket/2MB-2 200 6699925 ns/op 313.01 MB/s
BenchmarkThroughput/DynamicPacket/4MB-2 100 11166378 ns/op 375.62 MB/s
BenchmarkThroughput/DynamicPacket/8MB-2 100 19970899 ns/op 420.04 MB/s
BenchmarkThroughput/DynamicPacket/16MB-2 50 37666395 ns/op 445.42 MB/s
BenchmarkThroughput/DynamicPacket/32MB-2 20 72265335 ns/op 464.32 MB/s
BenchmarkThroughput/DynamicPacket/64MB-2 10 141556616 ns/op 474.08 MB/s
BenchmarkLatency/MaxPacket/200kbps-2 2 695473623 ns/op
BenchmarkLatency/MaxPacket/500kbps-2 5 280215303 ns/op
BenchmarkLatency/MaxPacket/1000kbps-2 10 141743985 ns/op
BenchmarkLatency/MaxPacket/2000kbps-2 20 72489339 ns/op
BenchmarkLatency/MaxPacket/5000kbps-2 50 30947455 ns/op
BenchmarkLatency/DynamicPacket/200kbps-2 10 135564515 ns/op
BenchmarkLatency/DynamicPacket/500kbps-2 20 56232736 ns/op
BenchmarkLatency/DynamicPacket/1000kbps-2 50 29897047 ns/op
BenchmarkLatency/DynamicPacket/2000kbps-2 100 16613692 ns/op
BenchmarkLatency/DynamicPacket/5000kbps-2 200 8642841 ns/op
PASS
ok crypto/tls 49.412s
PASS
ok crypto/x509 0.004s
? crypto/x509/pkix [no test files]
goos: linux
goarch: amd64
pkg: database/sql
BenchmarkConcurrentDBExec-2 100 14112291 ns/op 2636222 B/op 15150 allocs/op
BenchmarkConcurrentStmtQuery-2 100 12185124 ns/op 2587189 B/op 18674 allocs/op
BenchmarkConcurrentStmtExec-2 100 10172305 ns/op 1911107 B/op 3708 allocs/op
BenchmarkConcurrentTxQuery-2 100 13263598 ns/op 2651187 B/op 21164 allocs/op
BenchmarkConcurrentTxExec-2 500 3071040 ns/op 599845 B/op 14650 allocs/op
BenchmarkConcurrentTxStmtQuery-2 500 3811411 ns/op 786155 B/op 19160 allocs/op
BenchmarkConcurrentTxStmtExec-2 2000 1042585 ns/op 117111 B/op 2676 allocs/op
BenchmarkConcurrentRandom-2 100 10804073 ns/op 1842274 B/op 14775 allocs/op
BenchmarkManyConcurrentQueries-2 50000 39241 ns/op 4273 B/op 22 allocs/op
PASS
ok database/sql 14.885s
PASS
ok database/sql/driver 0.003s
PASS
ok debug/dwarf 0.003s
PASS
ok debug/elf 0.003s
PASS
ok debug/gosym 0.003s
PASS
ok debug/macho 0.003s
PASS
ok debug/pe 0.002s
PASS
ok debug/plan9obj 0.003s
? encoding [no test files]
PASS
ok encoding/ascii85 0.002s
goos: linux
goarch: amd64
pkg: encoding/asn1
BenchmarkMarshal-2 30000 43457 ns/op 9872 B/op 421 allocs/op
PASS
ok encoding/asn1 1.753s
goos: linux
goarch: amd64
pkg: encoding/base32
BenchmarkEncodeToString-2 50000 28269 ns/op 289.78 MB/s
BenchmarkDecodeString-2 10000 111175 ns/op 117.94 MB/s
PASS
ok encoding/base32 2.823s
goos: linux
goarch: amd64
pkg: encoding/base64
BenchmarkEncodeToString-2 100000 16645 ns/op 492.16 MB/s
BenchmarkDecodeString/2-2 30000000 53.0 ns/op 75.53 MB/s
BenchmarkDecodeString/4-2 20000000 63.4 ns/op 126.28 MB/s
BenchmarkDecodeString/8-2 20000000 73.8 ns/op 162.62 MB/s
BenchmarkDecodeString/64-2 5000000 281 ns/op 313.04 MB/s
BenchmarkDecodeString/8192-2 100000 23994 ns/op 455.28 MB/s
PASS
ok encoding/base64 10.679s
goos: linux
goarch: amd64
pkg: encoding/binary
BenchmarkReadSlice1000Int32s-2 200000 6157 ns/op 649.66 MB/s
BenchmarkReadStruct-2 1000000 1541 ns/op 48.66 MB/s
BenchmarkReadInts-2 5000000 384 ns/op 78.10 MB/s
BenchmarkWriteInts-2 3000000 425 ns/op 70.43 MB/s
BenchmarkWriteSlice1000Int32s-2 200000 6217 ns/op 643.38 MB/s
BenchmarkPutUint16-2 2000000000 0.85 ns/op 2341.24 MB/s
BenchmarkPutUint32-2 2000000000 0.86 ns/op 4675.07 MB/s
BenchmarkPutUint64-2 2000000000 0.95 ns/op 8418.89 MB/s
BenchmarkLittleEndianPutUint16-2 2000000000 0.95 ns/op 2099.30 MB/s
BenchmarkLittleEndianPutUint32-2 2000000000 1.53 ns/op 2607.33 MB/s
BenchmarkLittleEndianPutUint64-2 2000000000 0.78 ns/op 10238.07 MB/s
BenchmarkPutUvarint32-2 50000000 32.9 ns/op 121.74 MB/s
BenchmarkPutUvarint64-2 20000000 86.4 ns/op 92.57 MB/s
PASS
ok encoding/binary 24.162s
goos: linux
goarch: amd64
pkg: encoding/csv
BenchmarkRead-2 500000 2872 ns/op 664 B/op 18 allocs/op
BenchmarkReadWithFieldsPerRecord-2 500000 2851 ns/op 664 B/op 18 allocs/op
BenchmarkReadWithoutFieldsPerRecord-2 500000 2787 ns/op 664 B/op 18 allocs/op
BenchmarkReadLargeFields-2 300000 6019 ns/op 3936 B/op 24 allocs/op
BenchmarkReadReuseRecord-2 1000000 1581 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordWithFieldsPerRecord-2 1000000 1647 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordWithoutFieldsPerRecord-2 1000000 1551 ns/op 24 B/op 8 allocs/op
BenchmarkReadReuseRecordLargeFields-2 500000 3636 ns/op 2976 B/op 12 allocs/op
PASS
ok encoding/csv 12.920s
goos: linux
goarch: amd64
pkg: encoding/gob
BenchmarkEndToEndPipe-2 500000 2677 ns/op
BenchmarkEndToEndByteBuffer-2 1000000 1523 ns/op
BenchmarkEndToEndSliceByteBuffer-2 10000 154335 ns/op
BenchmarkEncodeComplex128Slice-2 100000 21918 ns/op
BenchmarkEncodeFloat64Slice-2 200000 10304 ns/op
BenchmarkEncodeInt32Slice-2 200000 11966 ns/op
BenchmarkEncodeStringSlice-2 200000 12289 ns/op
BenchmarkEncodeInterfaceSlice-2 3000 481344 ns/op
BenchmarkDecodeComplex128Slice-2 30000 51952 ns/op
BenchmarkDecodeFloat64Slice-2 50000 33948 ns/op
BenchmarkDecodeInt32Slice-2 50000 34767 ns/op
BenchmarkDecodeStringSlice-2 20000 68296 ns/op
BenchmarkDecodeInterfaceSlice-2 2000 721017 ns/op
BenchmarkDecodeMap-2 5000 244288 ns/op
PASS
ok encoding/gob 26.710s
goos: linux
goarch: amd64
pkg: encoding/hex
BenchmarkEncode/256-2 3000000 457 ns/op
BenchmarkEncode/1024-2 1000000 1779 ns/op
BenchmarkEncode/4096-2 200000 7029 ns/op
BenchmarkEncode/16384-2 50000 28168 ns/op
PASS
ok encoding/hex 6.809s
goos: linux
goarch: amd64
pkg: encoding/json
BenchmarkCodeEncoder-2 100 13304593 ns/op 145.85 MB/s
BenchmarkCodeMarshal-2 100 14771247 ns/op 131.37 MB/s
BenchmarkCodeDecoder-2 20 55976067 ns/op 34.67 MB/s
BenchmarkUnicodeDecoder-2 3000000 522 ns/op 26.81 MB/s
BenchmarkDecoderStream-2 3000000 398 ns/op
BenchmarkCodeUnmarshal-2 30 57994576 ns/op 33.46 MB/s
BenchmarkCodeUnmarshalReuse-2 30 54277456 ns/op
BenchmarkUnmarshalString-2 2000000 616 ns/op
BenchmarkUnmarshalFloat64-2 3000000 539 ns/op
BenchmarkUnmarshalInt64-2 3000000 487 ns/op
BenchmarkIssue10335-2 2000000 746 ns/op 320 B/op 4 allocs/op
BenchmarkUnmapped-2 500000 2692 ns/op 568 B/op 18 allocs/op
BenchmarkNumberIsValid-2 100000000 23.9 ns/op
BenchmarkNumberIsValidRegexp-2 2000000 757 ns/op
BenchmarkSkipValue-2 100 16094588 ns/op 124.39 MB/s
BenchmarkEncoderEncode-2 5000000 383 ns/op 0 B/op 0 allocs/op
PASS
ok encoding/json 30.032s
goos: linux
goarch: amd64
pkg: encoding/pem
BenchmarkEncode-2 10000 114182 ns/op 573.96 MB/s
BenchmarkDecode-2 5000 355647 ns/op 249.64 MB/s
PASS
ok encoding/pem 2.978s
goos: linux
goarch: amd64
pkg: encoding/xml
BenchmarkMarshal-2 100000 17258 ns/op 5776 B/op 23 allocs/op
BenchmarkUnmarshal-2 30000 43933 ns/op 8608 B/op 189 allocs/op
PASS
ok encoding/xml 3.664s
PASS
ok errors 0.004s
goos: linux
goarch: amd64
pkg: expvar
BenchmarkIntAdd-2 200000000 7.61 ns/op
BenchmarkIntSet-2 200000000 7.66 ns/op
BenchmarkFloatAdd-2 100000000 18.3 ns/op
BenchmarkFloatSet-2 200000000 7.65 ns/op
BenchmarkStringSet-2 30000000 50.4 ns/op
BenchmarkMapSet-2 10000000 182 ns/op
BenchmarkMapSetDifferent-2 2000000 772 ns/op
BenchmarkMapSetString-2 10000000 182 ns/op
BenchmarkMapAddSame-2 1000000 1127 ns/op
BenchmarkMapAddDifferent-2 500000 3226 ns/op
BenchmarkMapAddSameSteadyState-2 30000000 40.6 ns/op
BenchmarkMapAddDifferentSteadyState-2 10000000 174 ns/op
BenchmarkRealworldExpvarUsage-2 500000 4401 ns/op
PASS
ok expvar 24.894s
PASS
ok flag 0.003s
goos: linux
goarch: amd64
pkg: fmt
BenchmarkSprintfPadding-2 5000000 371 ns/op
BenchmarkSprintfEmpty-2 50000000 35.9 ns/op
BenchmarkSprintfString-2 20000000 93.7 ns/op
BenchmarkSprintfTruncateString-2 10000000 173 ns/op
BenchmarkSprintfSlowParsingPath-2 20000000 113 ns/op
BenchmarkSprintfQuoteString-2 2000000 708 ns/op
BenchmarkSprintfInt-2 20000000 98.6 ns/op
BenchmarkSprintfIntInt-2 10000000 151 ns/op
BenchmarkSprintfPrefixedInt-2 10000000 180 ns/op
BenchmarkSprintfFloat-2 5000000 271 ns/op
BenchmarkSprintfComplex-2 2000000 715 ns/op
BenchmarkSprintfBoolean-2 20000000 82.8 ns/op
BenchmarkSprintfHexString-2 10000000 188 ns/op
BenchmarkSprintfHexBytes-2 5000000 251 ns/op
BenchmarkSprintfBytes-2 3000000 540 ns/op
BenchmarkSprintfStringer-2 3000000 474 ns/op
BenchmarkSprintfStructure-2 1000000 1465 ns/op
BenchmarkManyArgs-2 3000000 564 ns/op
BenchmarkFprintInt-2 20000000 85.1 ns/op
BenchmarkFprintfBytes-2 10000000 126 ns/op
BenchmarkFprintIntNoAlloc-2 20000000 88.1 ns/op
BenchmarkScanInts-2 3000 463276 ns/op
BenchmarkScanRecursiveInt-2 30 49966083 ns/op
BenchmarkScanRecursiveIntReaderWrapper-2 30 50792184 ns/op
PASS
ok fmt 44.841s
PASS
ok go/ast 0.014s
PASS
ok go/build 0.006s
goos: linux
goarch: amd64
pkg: go/constant
BenchmarkStringAdd/1-2 5000000 246 ns/op 272 B/op 3 allocs/op
BenchmarkStringAdd/4-2 1000000 1176 ns/op 1360 B/op 11 allocs/op
BenchmarkStringAdd/16-2 500000 3696 ns/op 5072 B/op 25 allocs/op
BenchmarkStringAdd/64-2 200000 12516 ns/op 18384 B/op 75 allocs/op
BenchmarkStringAdd/256-2 30000 46694 ns/op 75216 B/op 269 allocs/op
BenchmarkStringAdd/1024-2 10000 190302 ns/op 295120 B/op 1039 allocs/op
BenchmarkStringAdd/4096-2 2000 952910 ns/op 1268560 B/op 4116 allocs/op
BenchmarkStringAdd/16384-2 200 7379169 ns/op 5446480 B/op 16410 allocs/op
BenchmarkStringAdd/65536-2 30 43582700 ns/op 22084432 B/op 65568 allocs/op
PASS
ok go/constant 16.624s
PASS
ok go/doc 0.007s
PASS
ok go/format 0.004s
PASS
ok go/importer 0.004s
PASS
ok go/internal/gccgoimporter 0.004s
PASS
ok go/internal/gcimporter 0.003s
PASS
ok go/internal/srcimporter 0.003s
goos: linux
goarch: amd64
pkg: go/parser
BenchmarkParse-2 300 4124794 ns/op 15.46 MB/s
PASS
ok go/parser 1.667s
goos: linux
goarch: amd64
pkg: go/printer
BenchmarkPrint-2 200 9757575 ns/op
PASS
ok go/printer 2.475s
goos: linux
goarch: amd64
pkg: go/scanner
BenchmarkScan-2 100000 22542 ns/op
BenchmarkScanFile-2 5000 347419 ns/op 51.03 MB/s
PASS
ok go/scanner 4.266s
PASS
ok go/token 0.005s
PASS
ok go/types 0.005s
PASS
ok hash 0.004s
goos: linux
goarch: amd64
pkg: hash/adler32
BenchmarkAdler32KB-2 3000000 544 ns/op 1879.80 MB/s
PASS
ok hash/adler32 2.184s
goos: linux
goarch: amd64
pkg: hash/crc32
BenchmarkCRC32/poly=IEEE/size=15/align=0-2 30000000 55.7 ns/op 269.08 MB/s
BenchmarkCRC32/poly=IEEE/size=15/align=1-2 30000000 55.7 ns/op 269.18 MB/s
BenchmarkCRC32/poly=IEEE/size=40/align=0-2 30000000 56.5 ns/op 707.70 MB/s
BenchmarkCRC32/poly=IEEE/size=40/align=1-2 30000000 56.7 ns/op 705.28 MB/s
BenchmarkCRC32/poly=IEEE/size=512/align=0-2 20000000 64.2 ns/op 7970.22 MB/s
BenchmarkCRC32/poly=IEEE/size=512/align=1-2 20000000 63.8 ns/op 8020.26 MB/s
BenchmarkCRC32/poly=IEEE/size=1kB/align=0-2 20000000 99.1 ns/op 10330.63 MB/s
BenchmarkCRC32/poly=IEEE/size=1kB/align=1-2 20000000 98.4 ns/op 10403.39 MB/s
BenchmarkCRC32/poly=IEEE/size=4kB/align=0-2 5000000 303 ns/op 13485.62 MB/s
BenchmarkCRC32/poly=IEEE/size=4kB/align=1-2 5000000 306 ns/op 13361.22 MB/s
BenchmarkCRC32/poly=IEEE/size=32kB/align=0-2 1000000 2070 ns/op 15829.23 MB/s
BenchmarkCRC32/poly=IEEE/size=32kB/align=1-2 1000000 2038 ns/op 16076.08 MB/s
BenchmarkCRC32/poly=Castagnoli/size=15/align=0-2 100000000 18.0 ns/op 835.27 MB/s
BenchmarkCRC32/poly=Castagnoli/size=15/align=1-2 100000000 20.2 ns/op 744.05 MB/s
BenchmarkCRC32/poly=Castagnoli/size=40/align=0-2 100000000 20.3 ns/op 1966.69 MB/s
BenchmarkCRC32/poly=Castagnoli/size=40/align=1-2 100000000 22.6 ns/op 1766.86 MB/s
BenchmarkCRC32/poly=Castagnoli/size=512/align=0-2 30000000 47.8 ns/op 10721.46 MB/s
BenchmarkCRC32/poly=Castagnoli/size=512/align=1-2 30000000 53.0 ns/op 9652.65 MB/s
BenchmarkCRC32/poly=Castagnoli/size=1kB/align=0-2 20000000 81.4 ns/op 12579.81 MB/s
BenchmarkCRC32/poly=Castagnoli/size=1kB/align=1-2 20000000 89.9 ns/op 11394.58 MB/s
BenchmarkCRC32/poly=Castagnoli/size=4kB/align=0-2 10000000 222 ns/op 18421.60 MB/s
BenchmarkCRC32/poly=Castagnoli/size=4kB/align=1-2 10000000 229 ns/op 17882.33 MB/s
BenchmarkCRC32/poly=Castagnoli/size=32kB/align=0-2 1000000 1727 ns/op 18966.88 MB/s
BenchmarkCRC32/poly=Castagnoli/size=32kB/align=1-2 1000000 1740 ns/op 18821.38 MB/s
BenchmarkCRC32/poly=Koopman/size=15/align=0-2 30000000 42.3 ns/op 354.63 MB/s
BenchmarkCRC32/poly=Koopman/size=15/align=1-2 30000000 42.1 ns/op 356.56 MB/s
BenchmarkCRC32/poly=Koopman/size=40/align=0-2 20000000 115 ns/op 347.42 MB/s
BenchmarkCRC32/poly=Koopman/size=40/align=1-2 20000000 115 ns/op 347.60 MB/s
BenchmarkCRC32/poly=Koopman/size=512/align=0-2 1000000 1558 ns/op 328.47 MB/s
BenchmarkCRC32/poly=Koopman/size=512/align=1-2 1000000 1562 ns/op 327.67 MB/s
BenchmarkCRC32/poly=Koopman/size=1kB/align=0-2 500000 3125 ns/op 327.65 MB/s
BenchmarkCRC32/poly=Koopman/size=1kB/align=1-2 500000 3131 ns/op 327.02 MB/s
BenchmarkCRC32/poly=Koopman/size=4kB/align=0-2 100000 12575 ns/op 325.71 MB/s
BenchmarkCRC32/poly=Koopman/size=4kB/align=1-2 100000 12494 ns/op 327.82 MB/s
BenchmarkCRC32/poly=Koopman/size=32kB/align=0-2 10000 100492 ns/op 326.07 MB/s
BenchmarkCRC32/poly=Koopman/size=32kB/align=1-2 10000 100179 ns/op 327.09 MB/s
PASS
ok hash/crc32 64.533s
goos: linux
goarch: amd64
pkg: hash/crc64
BenchmarkCrc64/ISO64KB-2 30000 50878 ns/op 1288.08 MB/s
BenchmarkCrc64/ISO4KB-2 500000 3015 ns/op 1358.46 MB/s
BenchmarkCrc64/ISO1KB-2 2000000 774 ns/op 1322.39 MB/s
BenchmarkCrc64/ECMA64KB-2 30000 47440 ns/op 1381.45 MB/s
BenchmarkCrc64/Random64KB-2 30000 54788 ns/op 1196.17 MB/s
BenchmarkCrc64/Random16KB-2 30000 49573 ns/op 330.50 MB/s
PASS
ok hash/crc64 11.997s
goos: linux
goarch: amd64
pkg: hash/fnv
BenchmarkFnv32KB-2 1000000 1542 ns/op 663.75 MB/s
BenchmarkFnv32aKB-2 1000000 1536 ns/op 666.35 MB/s
BenchmarkFnv64KB-2 1000000 1544 ns/op 663.13 MB/s
BenchmarkFnv64aKB-2 1000000 1548 ns/op 661.22 MB/s
BenchmarkFnv128KB-2 200000 6497 ns/op 157.60 MB/s
BenchmarkFnv128aKB-2 300000 5892 ns/op 173.78 MB/s
PASS
ok hash/fnv 9.435s
goos: linux
goarch: amd64
pkg: html
BenchmarkEscape-2 100000 20442 ns/op
BenchmarkEscapeNone-2 300000 4268 ns/op
BenchmarkUnescape-2 100000 22938 ns/op
BenchmarkUnescapeNone-2 20000000 107 ns/op
BenchmarkUnescapeSparse-2 500000 2664 ns/op
BenchmarkUnescapeDense-2 100000 17530 ns/op