-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo1.6.2.linux-amd64-bench.txt
1620 lines (1620 loc) · 88.4 KB
/
go1.6.2.linux-amd64-bench.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
PASS
ok archive/tar 0.003s
PASS
BenchmarkCompressedZipGarbage-2 50 26873210 ns/op 65778 B/op 116 allocs/op
BenchmarkZip64Test-2 10 164387552 ns/op
ok archive/zip 3.186s
PASS
BenchmarkReaderCopyOptimal-2 10000000 167 ns/op
BenchmarkReaderCopyUnoptimal-2 5000000 266 ns/op
BenchmarkReaderCopyNoWriteTo-2 200000 6665 ns/op
BenchmarkReaderWriteToOptimal-2 5000000 382 ns/op
BenchmarkWriterCopyOptimal-2 10000000 160 ns/op
BenchmarkWriterCopyUnoptimal-2 10000000 213 ns/op
BenchmarkWriterCopyNoReadFrom-2 300000 6187 ns/op
BenchmarkReaderEmpty-2 1000000 1269 ns/op 4224 B/op 3 allocs/op
BenchmarkWriterEmpty-2 1000000 1301 ns/op 4096 B/op 1 allocs/op
BenchmarkWriterFlush-2 100000000 22.4 ns/op 0 B/op 0 allocs/op
ok bufio 18.078s
? builtin [no test files]
PASS
BenchmarkReadString-2 200000 10519 ns/op 3114.85 MB/s
BenchmarkBufferNotEmptyWriteRead-2 3000 467281 ns/op
BenchmarkBufferFullSmallReads-2 10000 137559 ns/op
BenchmarkIndexByte32-2 200000000 8.65 ns/op 3697.86 MB/s
BenchmarkIndexByte4K-2 20000000 111 ns/op 36691.78 MB/s
BenchmarkIndexByte4M-2 10000 203026 ns/op 20658.91 MB/s
BenchmarkIndexByte64M-2 200 8827194 ns/op 7602.51 MB/s
BenchmarkIndexBytePortable32-2 30000000 42.1 ns/op 760.48 MB/s
BenchmarkIndexBytePortable4K-2 300000 4822 ns/op 849.33 MB/s
BenchmarkIndexBytePortable4M-2 300 4794392 ns/op 874.84 MB/s
BenchmarkIndexBytePortable64M-2 20 76729594 ns/op 874.62 MB/s
BenchmarkEqual0-2 300000000 4.91 ns/op
BenchmarkEqual1-2 300000000 5.03 ns/op 198.72 MB/s
BenchmarkEqual6-2 300000000 5.02 ns/op 1194.64 MB/s
BenchmarkEqual9-2 300000000 5.58 ns/op 1613.53 MB/s
BenchmarkEqual15-2 300000000 5.61 ns/op 2674.98 MB/s
BenchmarkEqual16-2 300000000 5.59 ns/op 2862.37 MB/s
BenchmarkEqual20-2 200000000 7.00 ns/op 2857.74 MB/s
BenchmarkEqual32-2 200000000 8.72 ns/op 3669.37 MB/s
BenchmarkEqual4K-2 20000000 84.3 ns/op 48610.67 MB/s
BenchmarkEqual4M-2 5000 361391 ns/op 11605.99 MB/s
BenchmarkEqual64M-2 100 16665167 ns/op 4026.89 MB/s
BenchmarkEqualPort1-2 300000000 5.73 ns/op 174.58 MB/s
BenchmarkEqualPort6-2 100000000 11.6 ns/op 515.86 MB/s
BenchmarkEqualPort32-2 30000000 41.8 ns/op 766.21 MB/s
BenchmarkEqualPort4K-2 300000 4695 ns/op 872.37 MB/s
BenchmarkEqualPortable4M-2 300 4934981 ns/op 849.91 MB/s
BenchmarkEqualPortable64M-2 20 78946604 ns/op 850.05 MB/s
BenchmarkIndex32-2 10000000 195 ns/op 163.44 MB/s
BenchmarkIndex4K-2 50000 29583 ns/op 138.46 MB/s
BenchmarkIndex4M-2 50 30081564 ns/op 139.43 MB/s
BenchmarkIndex64M-2 3 482802351 ns/op 139.00 MB/s
BenchmarkIndexEasy32-2 20000000 77.2 ns/op 414.61 MB/s
BenchmarkIndexEasy4K-2 10000000 124 ns/op 32870.21 MB/s
BenchmarkIndexEasy4M-2 10000 195021 ns/op 21506.89 MB/s
BenchmarkIndexEasy64M-2 200 7784343 ns/op 8621.01 MB/s
BenchmarkCount32-2 10000000 187 ns/op 170.28 MB/s
BenchmarkCount4K-2 50000 28480 ns/op 143.82 MB/s
BenchmarkCount4M-2 50 29765379 ns/op 140.91 MB/s
BenchmarkCount64M-2 3 475528179 ns/op 141.12 MB/s
BenchmarkCountEasy32-2 20000000 76.8 ns/op 416.64 MB/s
BenchmarkCountEasy4K-2 10000000 129 ns/op 31721.71 MB/s
BenchmarkCountEasy4M-2 10000 188636 ns/op 22234.89 MB/s
BenchmarkCountEasy64M-2 200 7586583 ns/op 8845.73 MB/s
BenchmarkFields-2 50 27115595 ns/op 38.67 MB/s
BenchmarkFieldsFunc-2 50 27044452 ns/op 38.77 MB/s
BenchmarkTrimSpace-2 30000000 46.7 ns/op
BenchmarkRepeat-2 10000000 162 ns/op
BenchmarkBytesCompare1-2 300000000 5.99 ns/op
BenchmarkBytesCompare2-2 200000000 6.01 ns/op
BenchmarkBytesCompare4-2 300000000 5.99 ns/op
BenchmarkBytesCompare8-2 300000000 4.94 ns/op
BenchmarkBytesCompare16-2 300000000 4.94 ns/op
BenchmarkBytesCompare32-2 300000000 5.88 ns/op
BenchmarkBytesCompare64-2 200000000 7.20 ns/op
BenchmarkBytesCompare128-2 200000000 8.78 ns/op
BenchmarkBytesCompare256-2 100000000 11.9 ns/op
BenchmarkBytesCompare512-2 100000000 18.3 ns/op
BenchmarkBytesCompare1024-2 50000000 30.9 ns/op
BenchmarkBytesCompare2048-2 20000000 63.7 ns/op
BenchmarkCompareBytesEqual-2 300000000 5.32 ns/op
BenchmarkCompareBytesToNil-2 300000000 5.16 ns/op
BenchmarkCompareBytesEmpty-2 300000000 4.55 ns/op
BenchmarkCompareBytesIdentical-2 300000000 4.56 ns/op
BenchmarkCompareBytesSameLength-2 200000000 6.33 ns/op
BenchmarkCompareBytesDifferentLength-2 200000000 6.21 ns/op
BenchmarkCompareBytesBigUnaligned-2 20000 86547 ns/op 12115.77 MB/s
BenchmarkCompareBytesBig-2 20000 93225 ns/op 11247.83 MB/s
BenchmarkCompareBytesBigIdentical-2 300000000 4.57 ns/op 229489292.95 MB/s
ok bytes 133.419s
PASS
ok cmd/addr2line 0.003s
? cmd/asm [no test files]
? cmd/asm/internal/arch [no test files]
PASS
ok cmd/asm/internal/asm 0.002s
? cmd/asm/internal/flags [no test files]
PASS
ok cmd/asm/internal/lex 0.002s
? cmd/cgo [no test files]
? cmd/compile [no test files]
? cmd/compile/internal/amd64 [no test files]
? cmd/compile/internal/arm [no test files]
? cmd/compile/internal/arm64 [no test files]
PASS
BenchmarkAddVV_1-2 100000000 10.9 ns/op 5884.42 MB/s
BenchmarkAddVV_2-2 100000000 13.8 ns/op 9255.93 MB/s
BenchmarkAddVV_3-2 100000000 17.3 ns/op 11093.39 MB/s
BenchmarkAddVV_4-2 100000000 19.4 ns/op 13229.30 MB/s
BenchmarkAddVV_5-2 100000000 21.5 ns/op 14917.97 MB/s
BenchmarkAddVV_1e1-2 50000000 32.8 ns/op 19486.56 MB/s
BenchmarkAddVV_1e2-2 5000000 253 ns/op 25282.11 MB/s
BenchmarkAddVV_1e3-2 1000000 2381 ns/op 26879.05 MB/s
BenchmarkAddVV_1e4-2 100000 23768 ns/op 26926.13 MB/s
BenchmarkAddVV_1e5-2 5000 240384 ns/op 26624.05 MB/s
BenchmarkAddVW_1-2 200000000 9.11 ns/op 878.14 MB/s
BenchmarkAddVW_2-2 100000000 10.6 ns/op 1508.81 MB/s
BenchmarkAddVW_3-2 100000000 12.3 ns/op 1954.89 MB/s
BenchmarkAddVW_4-2 100000000 13.6 ns/op 2359.94 MB/s
BenchmarkAddVW_5-2 100000000 14.8 ns/op 2696.25 MB/s
BenchmarkAddVW_1e1-2 100000000 21.7 ns/op 3692.88 MB/s
BenchmarkAddVW_1e2-2 10000000 161 ns/op 4953.85 MB/s
BenchmarkAddVW_1e3-2 1000000 1531 ns/op 5222.93 MB/s
BenchmarkAddVW_1e4-2 100000 15406 ns/op 5192.57 MB/s
BenchmarkAddVW_1e5-2 10000 156713 ns/op 5104.87 MB/s
BenchmarkAddMulVVW_1-2 100000000 19.8 ns/op 3236.61 MB/s
BenchmarkAddMulVVW_2-2 50000000 31.0 ns/op 4128.39 MB/s
BenchmarkAddMulVVW_3-2 30000000 46.5 ns/op 4130.02 MB/s
BenchmarkAddMulVVW_4-2 30000000 61.4 ns/op 4170.57 MB/s
BenchmarkAddMulVVW_5-2 20000000 76.2 ns/op 4199.79 MB/s
BenchmarkAddMulVVW_1e1-2 10000000 151 ns/op 4231.03 MB/s
BenchmarkAddMulVVW_1e2-2 1000000 1814 ns/op 3526.67 MB/s
BenchmarkAddMulVVW_1e3-2 100000 20314 ns/op 3150.45 MB/s
BenchmarkAddMulVVW_1e4-2 10000 196059 ns/op 3264.32 MB/s
BenchmarkAddMulVVW_1e5-2 1000 2076693 ns/op 3081.82 MB/s
BenchmarkBitLen0-2 200000000 7.14 ns/op
BenchmarkBitLen1-2 200000000 6.69 ns/op
BenchmarkBitLen2-2 200000000 6.70 ns/op
BenchmarkBitLen3-2 200000000 6.20 ns/op
BenchmarkBitLen4-2 200000000 6.50 ns/op
BenchmarkBitLen5-2 200000000 6.05 ns/op
BenchmarkBitLen8-2 200000000 6.41 ns/op
BenchmarkBitLen9-2 200000000 5.99 ns/op
BenchmarkBitLen16-2 200000000 6.39 ns/op
BenchmarkBitLen17-2 200000000 6.08 ns/op
BenchmarkBitLen31-2 300000000 4.91 ns/op
BenchmarkDecimalConversion-2 10000 235736 ns/op
BenchmarkParseFloatSmallExp-2 100000 19689 ns/op
BenchmarkParseFloatLargeExp-2 20000 80220 ns/op
BenchmarkGCD10x10-2 1000000 1517 ns/op
BenchmarkGCD10x100-2 1000000 1686 ns/op
BenchmarkGCD10x1000-2 1000000 2399 ns/op
BenchmarkGCD10x10000-2 200000 7979 ns/op
BenchmarkGCD10x100000-2 20000 64878 ns/op
BenchmarkGCD100x100-2 200000 8486 ns/op
BenchmarkGCD100x1000-2 200000 10121 ns/op
BenchmarkGCD100x10000-2 50000 30241 ns/op
BenchmarkGCD100x100000-2 5000 224884 ns/op
BenchmarkGCD1000x1000-2 10000 120492 ns/op
BenchmarkGCD1000x10000-2 10000 168496 ns/op
BenchmarkGCD1000x100000-2 2000 661494 ns/op
BenchmarkGCD10000x10000-2 300 4662963 ns/op
BenchmarkGCD10000x100000-2 200 8080060 ns/op
BenchmarkGCD100000x100000-2 3 383357828 ns/op
BenchmarkHilbert-2 500 3842646 ns/op
BenchmarkBinomial-2 300000 4332 ns/op
BenchmarkBitset-2 50000000 26.1 ns/op
BenchmarkBitsetNeg-2 10000000 123 ns/op
BenchmarkBitsetOrig-2 5000000 289 ns/op
BenchmarkBitsetNegOrig-2 3000000 509 ns/op
BenchmarkModSqrt225_Tonelli-2 300 4488159 ns/op
BenchmarkModSqrt224_3Mod4-2 1000 1389148 ns/op
BenchmarkModSqrt5430_Tonelli-2 1 20150312691 ns/op
BenchmarkModSqrt5430_3Mod4-2 1 12592973080 ns/op
BenchmarkMul-2 5 212925555 ns/op
BenchmarkExp3Power0x10-2 3000000 562 ns/op
BenchmarkExp3Power0x40-2 2000000 671 ns/op
BenchmarkExp3Power0x100-2 1000000 1120 ns/op
BenchmarkExp3Power0x400-2 500000 4039 ns/op
BenchmarkExp3Power0x1000-2 30000 54048 ns/op
BenchmarkExp3Power0x4000-2 3000 563695 ns/op
BenchmarkExp3Power0x10000-2 300 5338140 ns/op
BenchmarkExp3Power0x40000-2 30 50419226 ns/op
BenchmarkExp3Power0x100000-2 3 455427032 ns/op
BenchmarkExp3Power0x400000-2 1 4115508440 ns/op
BenchmarkFibo-2 10 142573563 ns/op
BenchmarkScanPi-2 2000 677048 ns/op
BenchmarkStringPiParallel-2 2000 711325 ns/op
BenchmarkScan10Base2-2 3000000 478 ns/op
BenchmarkScan100Base2-2 500000 3034 ns/op
BenchmarkScan1000Base2-2 50000 39265 ns/op
BenchmarkScan10000Base2-2 1000 1542293 ns/op
BenchmarkScan100000Base2-2 10 123669088 ns/op
BenchmarkScan10Base8-2 10000000 225 ns/op
BenchmarkScan100Base8-2 1000000 1266 ns/op
BenchmarkScan1000Base8-2 100000 22483 ns/op
BenchmarkScan10000Base8-2 1000 1309716 ns/op
BenchmarkScan100000Base8-2 10 122294523 ns/op
BenchmarkScan10Base10-2 10000000 220 ns/op
BenchmarkScan100Base10-2 1000000 1207 ns/op
BenchmarkScan1000Base10-2 100000 23745 ns/op
BenchmarkScan10000Base10-2 1000 1685318 ns/op
BenchmarkScan100000Base10-2 10 158495712 ns/op
BenchmarkScan10Base16-2 10000000 202 ns/op
BenchmarkScan100Base16-2 1000000 1011 ns/op
BenchmarkScan1000Base16-2 100000 22495 ns/op
BenchmarkScan10000Base16-2 1000 1370493 ns/op
BenchmarkScan100000Base16-2 10 127388729 ns/op
BenchmarkString10Base2-2 10000000 185 ns/op
BenchmarkString100Base2-2 1000000 1066 ns/op
BenchmarkString1000Base2-2 200000 9609 ns/op
BenchmarkString10000Base2-2 20000 89488 ns/op
BenchmarkString100000Base2-2 2000 898827 ns/op
BenchmarkString10Base8-2 10000000 128 ns/op
BenchmarkString100Base8-2 5000000 379 ns/op
BenchmarkString1000Base8-2 500000 2914 ns/op
BenchmarkString10000Base8-2 50000 28026 ns/op
BenchmarkString100000Base8-2 5000 272377 ns/op
BenchmarkString10Base10-2 5000000 372 ns/op
BenchmarkString100Base10-2 1000000 1647 ns/op
BenchmarkString1000Base10-2 100000 15791 ns/op
BenchmarkString10000Base10-2 20000 75975 ns/op
BenchmarkString100000Base10-2 20 59460563 ns/op
BenchmarkString10Base16-2 10000000 121 ns/op
BenchmarkString100Base16-2 5000000 315 ns/op
BenchmarkString1000Base16-2 1000000 2187 ns/op
BenchmarkString10000Base16-2 100000 20695 ns/op
BenchmarkString100000Base16-2 10000 202016 ns/op
BenchmarkLeafSize0-2 200 7224461 ns/op
BenchmarkLeafSize1-2 20000 94337 ns/op
BenchmarkLeafSize2-2 20000 94025 ns/op
BenchmarkLeafSize3-2 2000 791016 ns/op
BenchmarkLeafSize4-2 20000 94198 ns/op
BenchmarkLeafSize5-2 2000 1009717 ns/op
BenchmarkLeafSize6-2 2000 797686 ns/op
BenchmarkLeafSize7-2 3000 489089 ns/op
BenchmarkLeafSize8-2 20000 93592 ns/op
BenchmarkLeafSize9-2 2000 1158033 ns/op
BenchmarkLeafSize10-2 2000 1012068 ns/op
BenchmarkLeafSize11-2 2000 967754 ns/op
BenchmarkLeafSize12-2 2000 798467 ns/op
BenchmarkLeafSize13-2 2000 688904 ns/op
BenchmarkLeafSize14-2 3000 489159 ns/op
BenchmarkLeafSize15-2 5000 308519 ns/op
BenchmarkLeafSize16-2 20000 94292 ns/op
BenchmarkLeafSize32-2 10000 103196 ns/op
BenchmarkLeafSize64-2 10000 155371 ns/op
ok cmd/compile/internal/big 419.689s
PASS
ok cmd/compile/internal/gc 0.003s
? cmd/compile/internal/mips64 [no test files]
? cmd/compile/internal/ppc64 [no test files]
? cmd/compile/internal/x86 [no test files]
PASS
ok cmd/cover 0.005s
? cmd/dist [no test files]
PASS
ok cmd/doc 0.003s
PASS
ok cmd/fix 0.002s
exit status 2
FAIL cmd/go 0.011s
PASS
ok cmd/gofmt 0.002s
? cmd/internal/gcprog [no test files]
PASS
ok cmd/internal/goobj 0.002s
PASS
ok cmd/internal/obj 0.002s
? cmd/internal/obj/arm [no test files]
? cmd/internal/obj/arm64 [no test files]
? cmd/internal/obj/mips [no test files]
? cmd/internal/obj/ppc64 [no test files]
PASS
ok cmd/internal/obj/x86 0.003s
? cmd/internal/objfile [no test files]
PASS
ok cmd/internal/unvendor/golang.org/x/arch/arm/armasm 0.002s
PASS
ok cmd/internal/unvendor/golang.org/x/arch/x86/x86asm 0.002s
? cmd/link [no test files]
? cmd/link/internal/amd64 [no test files]
? cmd/link/internal/arm [no test files]
? cmd/link/internal/arm64 [no test files]
? cmd/link/internal/ld [no test files]
? cmd/link/internal/mips64 [no test files]
? cmd/link/internal/ppc64 [no test files]
? cmd/link/internal/x86 [no test files]
PASS
ok cmd/nm 0.002s
PASS
ok cmd/objdump 0.003s
PASS
ok cmd/pack 0.002s
? cmd/pprof [no test files]
? cmd/pprof/internal/commands [no test files]
? cmd/pprof/internal/driver [no test files]
? cmd/pprof/internal/fetch [no test files]
? cmd/pprof/internal/plugin [no test files]
PASS
ok cmd/pprof/internal/profile 0.002s
? cmd/pprof/internal/report [no test files]
? cmd/pprof/internal/svg [no test files]
? cmd/pprof/internal/symbolizer [no test files]
? cmd/pprof/internal/symbolz [no test files]
? cmd/pprof/internal/tempfile [no test files]
? cmd/trace [no test files]
PASS
ok cmd/vet 0.003s
? cmd/vet/internal/whitelist [no test files]
? cmd/yacc [no test files]
PASS
BenchmarkDecodeDigits-2 200 8368523 ns/op 5.16 MB/s
BenchmarkDecodeTwain-2 50 27594358 ns/op 4.29 MB/s
BenchmarkDecodeRand-2 500 3077914 ns/op 5.47 MB/s
ok compress/bzip2 5.785s
PASS
BenchmarkDecodeDigitsSpeed1e4-2 5000 200822 ns/op 49.80 MB/s 40291 B/op 7 allocs/op
BenchmarkDecodeDigitsSpeed1e5-2 1000 1810265 ns/op 55.24 MB/s 40495 B/op 14 allocs/op
BenchmarkDecodeDigitsSpeed1e6-2 100 17826096 ns/op 56.10 MB/s 42588 B/op 90 allocs/op
BenchmarkDecodeDigitsDefault1e4-2 10000 195199 ns/op 51.23 MB/s 40319 B/op 8 allocs/op
BenchmarkDecodeDigitsDefault1e5-2 1000 1614069 ns/op 61.96 MB/s 40663 B/op 13 allocs/op
BenchmarkDecodeDigitsDefault1e6-2 100 15715112 ns/op 63.63 MB/s 44332 B/op 76 allocs/op
BenchmarkDecodeDigitsCompress1e4-2 10000 195810 ns/op 51.07 MB/s 40321 B/op 8 allocs/op
BenchmarkDecodeDigitsCompress1e5-2 1000 1619611 ns/op 61.74 MB/s 40646 B/op 13 allocs/op
BenchmarkDecodeDigitsCompress1e6-2 100 15801210 ns/op 63.29 MB/s 44332 B/op 76 allocs/op
BenchmarkDecodeTwainSpeed1e4-2 10000 201928 ns/op 49.52 MB/s 40750 B/op 15 allocs/op
BenchmarkDecodeTwainSpeed1e5-2 1000 1711178 ns/op 58.44 MB/s 44839 B/op 31 allocs/op
BenchmarkDecodeTwainSpeed1e6-2 100 16700785 ns/op 59.88 MB/s 79954 B/op 217 allocs/op
BenchmarkDecodeTwainDefault1e4-2 10000 194908 ns/op 51.31 MB/s 40753 B/op 15 allocs/op
BenchmarkDecodeTwainDefault1e5-2 1000 1486140 ns/op 67.29 MB/s 42959 B/op 28 allocs/op
BenchmarkDecodeTwainDefault1e6-2 100 14231560 ns/op 70.27 MB/s 61545 B/op 168 allocs/op
BenchmarkDecodeTwainCompress1e4-2 10000 193161 ns/op 51.77 MB/s 40760 B/op 15 allocs/op
BenchmarkDecodeTwainCompress1e5-2 1000 1469934 ns/op 68.03 MB/s 42471 B/op 25 allocs/op
BenchmarkDecodeTwainCompress1e6-2 100 14043820 ns/op 71.21 MB/s 62561 B/op 169 allocs/op
BenchmarkEncodeDigitsSpeed1e4-2 2000 751938 ns/op 13.30 MB/s
BenchmarkEncodeDigitsSpeed1e5-2 300 4020477 ns/op 24.87 MB/s
BenchmarkEncodeDigitsSpeed1e6-2 50 35596931 ns/op 28.09 MB/s
BenchmarkEncodeDigitsDefault1e4-2 2000 1027331 ns/op 9.73 MB/s
BenchmarkEncodeDigitsDefault1e5-2 100 16399472 ns/op 6.10 MB/s
BenchmarkEncodeDigitsDefault1e6-2 10 180478191 ns/op 5.54 MB/s
BenchmarkEncodeDigitsCompress1e4-2 2000 1077540 ns/op 9.28 MB/s
BenchmarkEncodeDigitsCompress1e5-2 100 16341149 ns/op 6.12 MB/s
BenchmarkEncodeDigitsCompress1e6-2 10 179733540 ns/op 5.56 MB/s
BenchmarkEncodeTwainSpeed1e4-2 2000 790794 ns/op 12.65 MB/s
BenchmarkEncodeTwainSpeed1e5-2 300 4141321 ns/op 24.15 MB/s
BenchmarkEncodeTwainSpeed1e6-2 50 35655538 ns/op 28.05 MB/s
BenchmarkEncodeTwainDefault1e4-2 2000 1164691 ns/op 8.59 MB/s
BenchmarkEncodeTwainDefault1e5-2 100 14365558 ns/op 6.96 MB/s
BenchmarkEncodeTwainDefault1e6-2 10 151190470 ns/op 6.61 MB/s
BenchmarkEncodeTwainCompress1e4-2 1000 1113578 ns/op 8.98 MB/s
BenchmarkEncodeTwainCompress1e5-2 100 18147799 ns/op 5.51 MB/s
BenchmarkEncodeTwainCompress1e6-2 5 210133114 ns/op 4.76 MB/s
ok compress/flate 64.782s
PASS
ok compress/gzip 0.003s
PASS
BenchmarkDecoder1e4-2 10000 152487 ns/op 65.58 MB/s
BenchmarkDecoder1e5-2 1000 1441108 ns/op 69.39 MB/s
BenchmarkDecoder1e6-2 100 14690077 ns/op 68.07 MB/s
BenchmarkEncoder1e4-2 5000 269217 ns/op 37.14 MB/s
BenchmarkEncoder1e5-2 500 2437910 ns/op 41.02 MB/s
BenchmarkEncoder1e6-2 50 23763008 ns/op 42.08 MB/s
ok compress/lzw 8.746s
PASS
ok compress/zlib 0.003s
PASS
BenchmarkDup-2 1000 1254738 ns/op
ok container/heap 1.382s
PASS
ok container/list 0.003s
PASS
ok container/ring 0.002s
? crypto [no test files]
PASS
BenchmarkEncrypt-2 100000000 17.4 ns/op 921.42 MB/s
BenchmarkDecrypt-2 100000000 18.7 ns/op 855.43 MB/s
BenchmarkExpand-2 20000000 77.5 ns/op
ok crypto/aes 5.284s
PASS
BenchmarkAESGCMSeal1K-2 5000000 376 ns/op 2720.55 MB/s
BenchmarkAESGCMOpen1K-2 5000000 356 ns/op 2874.05 MB/s
BenchmarkAESGCMSeal8K-2 1000000 2135 ns/op 3835.34 MB/s
BenchmarkAESGCMOpen8K-2 1000000 2070 ns/op 3957.30 MB/s
BenchmarkAESCFBEncrypt1K-2 500000 2844 ns/op 358.19 MB/s
BenchmarkAESCFBDecrypt1K-2 500000 2958 ns/op 344.38 MB/s
BenchmarkAESOFB1K-2 1000000 1873 ns/op 543.86 MB/s
BenchmarkAESCTR1K-2 1000000 1836 ns/op 554.77 MB/s
BenchmarkAESCBCEncrypt1K-2 500000 2677 ns/op 382.47 MB/s
BenchmarkAESCBCDecrypt1K-2 500000 2546 ns/op 402.19 MB/s
ok crypto/cipher 18.040s
PASS
BenchmarkEncrypt-2 2000000 682 ns/op 11.72 MB/s
BenchmarkDecrypt-2 2000000 672 ns/op 11.90 MB/s
ok crypto/des 4.078s
PASS
ok crypto/dsa 0.003s
PASS
BenchmarkSignP256-2 30000 42165 ns/op
BenchmarkVerifyP256-2 10000 111778 ns/op
BenchmarkKeyGeneration-2 50000 24007 ns/op
ok crypto/ecdsa 4.294s
PASS
BenchmarkBaseMult-2 1000 1470531 ns/op
BenchmarkBaseMultP256-2 100000 21676 ns/op
BenchmarkScalarMultP256-2 20000 83479 ns/op
ok crypto/elliptic 6.557s
PASS
ok crypto/hmac 0.003s
PASS
BenchmarkHash8Bytes-2 10000000 213 ns/op 37.43 MB/s
BenchmarkHash1K-2 1000000 2120 ns/op 483.02 MB/s
BenchmarkHash8K-2 100000 15485 ns/op 529.02 MB/s
BenchmarkHash8BytesUnaligned-2 10000000 214 ns/op 37.32 MB/s
BenchmarkHash1KUnaligned-2 1000000 2117 ns/op 483.56 MB/s
BenchmarkHash8KUnaligned-2 100000 15577 ns/op 525.90 MB/s
ok crypto/md5 12.423s
PASS
ok crypto/rand 0.009s
PASS
BenchmarkRC4_128-2 5000000 310 ns/op 412.47 MB/s
BenchmarkRC4_1K-2 500000 2837 ns/op 360.90 MB/s
BenchmarkRC4_8K-2 100000 22899 ns/op 353.54 MB/s
ok crypto/rc4 5.840s
PASS
BenchmarkRSA2048Decrypt-2 500 2561952 ns/op
BenchmarkRSA2048Sign-2 500 3822277 ns/op
Benchmark3PrimeRSA2048Decrypt-2 1000 1519675 ns/op
ok crypto/rsa 5.514s
PASS
BenchmarkHash8Bytes-2 5000000 241 ns/op 33.08 MB/s
BenchmarkHash1K-2 500000 2462 ns/op 415.89 MB/s
BenchmarkHash8K-2 100000 17937 ns/op 456.70 MB/s
ok crypto/sha1 4.695s
PASS
BenchmarkHash8Bytes-2 3000000 526 ns/op 15.20 MB/s
BenchmarkHash1K-2 200000 7087 ns/op 144.48 MB/s
BenchmarkHash8K-2 30000 52544 ns/op 155.91 MB/s
ok crypto/sha256 5.713s
PASS
BenchmarkHash8Bytes-2 2000000 650 ns/op 12.30 MB/s
BenchmarkHash1K-2 300000 4434 ns/op 230.93 MB/s
BenchmarkHash8K-2 50000 30925 ns/op 264.89 MB/s
ok crypto/sha512 5.206s
PASS
ok crypto/subtle 0.003s
PASS
ok crypto/tls 0.004s
PASS
ok crypto/x509 0.003s
? crypto/x509/pkix [no test files]
PASS
BenchmarkConcurrentDBExec-2 100 10753537 ns/op 2250175 B/op 15638 allocs/op
BenchmarkConcurrentStmtQuery-2 100 10698319 ns/op 2296152 B/op 14653 allocs/op
BenchmarkConcurrentStmtExec-2 200 8709647 ns/op 1827183 B/op 4668 allocs/op
BenchmarkConcurrentTxQuery-2 100 11726128 ns/op 2367439 B/op 16151 allocs/op
BenchmarkConcurrentTxExec-2 300 4184383 ns/op 525484 B/op 14641 allocs/op
BenchmarkConcurrentTxStmtQuery-2 500 3611442 ns/op 614161 B/op 14630 allocs/op
BenchmarkConcurrentTxStmtExec-2 1000 1207580 ns/op 90491 B/op 3165 allocs/op
BenchmarkConcurrentRandom-2 200 9550656 ns/op 1626319 B/op 12607 allocs/op
BenchmarkManyConcurrentQueries-2 50000 38163 ns/op 3881 B/op 18 allocs/op
ok database/sql 16.392s
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
PASS
ok encoding/asn1 0.002s
PASS
BenchmarkEncodeToString-2 30000 41456 ns/op 197.60 MB/s
BenchmarkDecodeString-2 10000 159891 ns/op 82.01 MB/s
ok encoding/base32 3.284s
PASS
BenchmarkEncodeToString-2 50000 24513 ns/op 334.18 MB/s
BenchmarkDecodeString-2 20000 63304 ns/op 172.56 MB/s
ok encoding/base64 3.388s
PASS
BenchmarkReadSlice1000Int32s-2 200000 9494 ns/op 421.28 MB/s
BenchmarkReadStruct-2 1000000 1641 ns/op 42.63 MB/s
BenchmarkReadInts-2 2000000 669 ns/op 44.80 MB/s
BenchmarkWriteInts-2 1000000 1501 ns/op 19.97 MB/s
BenchmarkWriteSlice1000Int32s-2 200000 9165 ns/op 436.41 MB/s
BenchmarkPutUvarint32-2 50000000 26.7 ns/op 149.95 MB/s
BenchmarkPutUvarint64-2 20000000 72.2 ns/op 110.81 MB/s
ok encoding/binary 12.012s
PASS
BenchmarkRead-2 200000 8217 ns/op
ok encoding/csv 1.732s
PASS
BenchmarkEndToEndPipe-2 500000 3112 ns/op
BenchmarkEndToEndByteBuffer-2 1000000 2211 ns/op
BenchmarkEndToEndSliceByteBuffer-2 10000 202692 ns/op
BenchmarkEncodeComplex128Slice-2 30000 58628 ns/op
BenchmarkEncodeFloat64Slice-2 50000 24152 ns/op
BenchmarkEncodeInt32Slice-2 100000 17343 ns/op
BenchmarkEncodeStringSlice-2 100000 15958 ns/op
BenchmarkEncodeInterfaceSlice-2 2000 748077 ns/op
BenchmarkDecodeComplex128Slice-2 10000 105302 ns/op
BenchmarkDecodeFloat64Slice-2 20000 63541 ns/op
BenchmarkDecodeInt32Slice-2 30000 56276 ns/op
BenchmarkDecodeStringSlice-2 10000 113947 ns/op
BenchmarkDecodeInterfaceSlice-2 2000 922986 ns/op
ok encoding/gob 23.292s
PASS
ok encoding/hex 0.003s
PASS
BenchmarkCodeEncoder-2 100 18870522 ns/op 102.83 MB/s
BenchmarkCodeMarshal-2 100 22445073 ns/op 86.45 MB/s
BenchmarkCodeDecoder-2 20 62569919 ns/op 31.01 MB/s
BenchmarkDecoderStream-2 3000000 527 ns/op
BenchmarkCodeUnmarshal-2 20 63831934 ns/op 30.40 MB/s
BenchmarkCodeUnmarshalReuse-2 20 60617079 ns/op
BenchmarkUnmarshalString-2 2000000 820 ns/op
BenchmarkUnmarshalFloat64-2 2000000 742 ns/op
BenchmarkUnmarshalInt64-2 2000000 665 ns/op
BenchmarkIssue10335-2 1000000 1038 ns/op 272 B/op 4 allocs/op
BenchmarkNumberIsValid-2 50000000 32.2 ns/op
BenchmarkNumberIsValidRegexp-2 2000000 755 ns/op
BenchmarkSkipValue-2 100 16540566 ns/op 121.04 MB/s
BenchmarkEncoderEncode-2 2000000 607 ns/op 8 B/op 1 allocs/op
ok encoding/json 26.244s
PASS
BenchmarkEncode-2 10000 173709 ns/op 377.27 MB/s
BenchmarkDecode-2 2000 685892 ns/op 129.44 MB/s
ok encoding/pem 3.206s
PASS
BenchmarkMarshal-2 100000 17661 ns/op 5776 B/op 23 allocs/op
BenchmarkUnmarshal-2 30000 56089 ns/op 9088 B/op 186 allocs/op
ok encoding/xml 4.203s
PASS
ok errors 0.010s
PASS
BenchmarkIntAdd-2 200000000 7.83 ns/op
BenchmarkIntSet-2 200000000 7.65 ns/op
BenchmarkFloatAdd-2 100000000 23.8 ns/op
BenchmarkFloatSet-2 200000000 7.60 ns/op
BenchmarkStringSet-2 10000000 227 ns/op
BenchmarkMapSet-2 5000000 309 ns/op
BenchmarkMapAddSame-2 1000000 1014 ns/op
BenchmarkMapAddDifferent-2 500000 2770 ns/op
BenchmarkRealworldExpvarUsage-2 300000 4782 ns/op
ok expvar 17.715s
PASS
ok flag 0.003s
PASS
BenchmarkSprintfEmpty-2 30000000 42.0 ns/op
BenchmarkSprintfString-2 5000000 240 ns/op
BenchmarkSprintfInt-2 10000000 238 ns/op
BenchmarkSprintfIntInt-2 5000000 381 ns/op
BenchmarkSprintfPrefixedInt-2 3000000 403 ns/op
BenchmarkSprintfFloat-2 3000000 434 ns/op
BenchmarkManyArgs-2 1000000 1296 ns/op
BenchmarkFprintInt-2 10000000 172 ns/op
BenchmarkFprintfBytes-2 10000000 236 ns/op
BenchmarkFprintIntNoAlloc-2 20000000 118 ns/op
BenchmarkScanInts-2 2000 762901 ns/op
BenchmarkScanRecursiveInt-2 20 80807869 ns/op
ok fmt 22.733s
PASS
ok go/ast 0.003s
PASS
ok go/build 0.003s
PASS
ok go/constant 0.002s
PASS
ok go/doc 0.006s
PASS
ok go/format 0.002s
? go/importer [no test files]
PASS
ok go/internal/gccgoimporter 0.002s
PASS
ok go/internal/gcimporter 0.003s
PASS
BenchmarkParse-2 300 4960942 ns/op 12.85 MB/s
ok go/parser 2.008s
PASS
BenchmarkPrint-2 200 8914960 ns/op
ok go/printer 2.263s
PASS
BenchmarkScan-2 50000 36026 ns/op
BenchmarkScanFile-2 5000 412187 ns/op 42.72 MB/s
ok go/scanner 4.277s
PASS
ok go/token 0.003s
PASS
ok go/types 0.004s
? hash [no test files]
PASS
BenchmarkAdler32KB-2 2000000 808 ns/op 1266.56 MB/s
ok hash/adler32 2.441s
PASS
BenchmarkIEEECrc1KB-2 10000000 120 ns/op 8492.24 MB/s
BenchmarkIEEECrc4KB-2 5000000 343 ns/op 11935.91 MB/s
BenchmarkCastagnoliCrc1KB-2 10000000 151 ns/op 6772.94 MB/s
ok hash/crc32 5.061s
PASS
BenchmarkCrc64KB-2 500000 3493 ns/op 293.14 MB/s
ok hash/crc64 1.786s
PASS
BenchmarkFnv32KB-2 1000000 1552 ns/op 659.62 MB/s
BenchmarkFnv32aKB-2 1000000 1554 ns/op 658.69 MB/s
BenchmarkFnv64KB-2 1000000 1563 ns/op 655.03 MB/s
BenchmarkFnv64aKB-2 1000000 1561 ns/op 655.91 MB/s
ok hash/fnv 6.301s
PASS
BenchmarkEscape-2 50000 25127 ns/op
BenchmarkEscapeNone-2 300000 5798 ns/op
BenchmarkUnescape-2 50000 25224 ns/op
BenchmarkUnescapeNone-2 20000000 107 ns/op
BenchmarkUnescapeSparse-2 500000 3143 ns/op
BenchmarkUnescapeDense-2 100000 22137 ns/op
ok html 11.149s
PASS
BenchmarkCSSEscaper-2 500000 2602 ns/op
BenchmarkCSSEscaperNoSpecials-2 3000000 540 ns/op
BenchmarkDecodeCSS-2 2000000 937 ns/op
BenchmarkDecodeCSSNoSpecials-2 200000000 8.27 ns/op
BenchmarkCSSValueFilter-2 3000000 480 ns/op
BenchmarkCSSValueFilterOk-2 2000000 712 ns/op
BenchmarkEscapedExecute-2 300000 4628 ns/op
BenchmarkHTMLNospaceEscaper-2 500000 2612 ns/op
BenchmarkHTMLNospaceEscaperNoSpecials-2 3000000 587 ns/op
BenchmarkStripTags-2 1000000 2072 ns/op
BenchmarkStripTagsNoSpecials-2 10000000 208 ns/op
BenchmarkJSValEscaperWithNum-2 1000000 1143 ns/op
BenchmarkJSValEscaperWithStr-2 500000 3741 ns/op
BenchmarkJSValEscaperWithStrNoSpecials-2 1000000 1239 ns/op
BenchmarkJSValEscaperWithObj-2 300000 4192 ns/op
BenchmarkJSValEscaperWithObjNoSpecials-2 1000000 1618 ns/op
BenchmarkJSStrEscaperNoSpecials-2 3000000 555 ns/op
BenchmarkJSStrEscaper-2 1000000 2411 ns/op
BenchmarkJSRegexpEscaperNoSpecials-2 3000000 553 ns/op
BenchmarkJSRegexpEscaper-2 500000 2532 ns/op
BenchmarkTemplateSpecialTags-2 2000 788160 ns/op
BenchmarkURLEscaper-2 500000 3954 ns/op
BenchmarkURLEscaperNoSpecials-2 5000000 334 ns/op
BenchmarkURLNormalizer-2 500000 2734 ns/op
BenchmarkURLNormalizerNoSpecials-2 5000000 351 ns/op
ok html/template 47.125s
PASS
ok image 0.005s
PASS
ok image/color 0.003s
? image/color/palette [no test files]
PASS
BenchmarkFillOver-2 1000 1731912 ns/op
BenchmarkFillSrc-2 50000 37006 ns/op
BenchmarkCopyOver-2 1000 1349316 ns/op
BenchmarkCopySrc-2 50000 37852 ns/op
BenchmarkNRGBAOver-2 1000 1704023 ns/op
BenchmarkNRGBASrc-2 2000 980368 ns/op
BenchmarkYCbCr-2 2000 1115286 ns/op
BenchmarkGray-2 5000 339800 ns/op
BenchmarkCMYK-2 2000 1195815 ns/op
BenchmarkGlyphOver-2 3000 553186 ns/op
BenchmarkRGBA-2 200 8118429 ns/op
BenchmarkPaletted-2 200 9025699 ns/op
BenchmarkGenericOver-2 100 24430926 ns/op
BenchmarkGenericMaskOver-2 100 11837634 ns/op
BenchmarkGenericSrc-2 100 10987962 ns/op
BenchmarkGenericMaskSrc-2 100 19664590 ns/op
ok image/draw 32.382s
PASS
BenchmarkEncode-2 200 8419334 ns/op 145.95 MB/s
BenchmarkQuantizedEncode-2 2 852129719 ns/op 1.44 MB/s
ok image/gif 7.688s
? image/internal/imageutil [no test files]
PASS
BenchmarkFDCT-2 500000 3225 ns/op
BenchmarkIDCT-2 500000 2795 ns/op
BenchmarkDecodeBaseline-2 1000 1641242 ns/op 37.65 MB/s
BenchmarkDecodeProgressive-2 500 2587720 ns/op 23.88 MB/s
BenchmarkEncode-2 50 28184980 ns/op 43.60 MB/s
ok image/jpeg 9.782s
PASS
BenchmarkPaeth-2 300000000 4.85 ns/op
BenchmarkDecodeGray-2 2000 944784 ns/op 69.37 MB/s
BenchmarkDecodeNRGBAGradient-2 500 3717825 ns/op 70.51 MB/s
BenchmarkDecodeNRGBAOpaque-2 500 3120939 ns/op 84.00 MB/s
BenchmarkDecodePaletted-2 2000 707479 ns/op 92.63 MB/s
BenchmarkDecodeRGB-2 500 3030519 ns/op 86.50 MB/s
BenchmarkDecodeInterlacing-2 500 3939127 ns/op 66.55 MB/s
BenchmarkEncodeGray-2 300 4330147 ns/op 70.94 MB/s
BenchmarkEncodeNRGBOpaque-2 100 12784859 ns/op 96.11 MB/s
BenchmarkEncodeNRGBA-2 100 14956373 ns/op 82.16 MB/s
BenchmarkEncodePaletted-2 300 4441813 ns/op 69.16 MB/s
BenchmarkEncodeRGBOpaque-2 100 12638779 ns/op 97.22 MB/s
BenchmarkEncodeRGBA-2 30 49053988 ns/op 25.05 MB/s
ok image/png 22.939s
PASS
BenchmarkNewIndexRandom-2 3 457603274 ns/op
BenchmarkNewIndexRepeat-2 2 646076112 ns/op
BenchmarkSaveRestore-2 100 17371780 ns/op 240.60 MB/s
ok index/suffixarray 7.624s
PASS
ok internal/golang.org/x/net/http2/hpack 0.003s
? internal/race [no test files]
PASS
ok internal/singleflight 0.002s
? internal/syscall/unix [no test files]
? internal/syscall/windows/sysdll [no test files]
? internal/testenv [no test files]
PASS
ok internal/trace 0.002s
PASS
ok io 0.002s
PASS
ok io/ioutil 0.002s
PASS
BenchmarkItoa-2 20000000 96.8 ns/op
BenchmarkPrintln-2 2000000 601 ns/op
ok log 3.860s
PASS
ok log/syslog 0.004s
PASS
BenchmarkAcos-2 50000000 26.2 ns/op
BenchmarkAcosh-2 50000000 37.8 ns/op
BenchmarkAsin-2 100000000 22.0 ns/op
BenchmarkAsinh-2 30000000 42.6 ns/op
BenchmarkAtan-2 100000000 12.8 ns/op
BenchmarkAtanh-2 50000000 34.5 ns/op
BenchmarkAtan2-2 100000000 23.2 ns/op
BenchmarkCbrt-2 100000000 20.9 ns/op
BenchmarkCeil-2 1000000000 2.14 ns/op
BenchmarkCopysign-2 300000000 4.15 ns/op
BenchmarkCos-2 100000000 13.4 ns/op
BenchmarkCosh-2 50000000 39.7 ns/op
BenchmarkErf-2 100000000 12.0 ns/op
BenchmarkErfc-2 100000000 13.9 ns/op
BenchmarkExp-2 100000000 17.1 ns/op
BenchmarkExpGo-2 30000000 42.1 ns/op
BenchmarkExpm1-2 100000000 20.6 ns/op
BenchmarkExp2-2 30000000 39.5 ns/op
BenchmarkExp2Go-2 50000000 39.8 ns/op
BenchmarkAbs-2 2000000000 1.39 ns/op
BenchmarkDim-2 300000000 4.24 ns/op
BenchmarkFloor-2 1000000000 2.16 ns/op
BenchmarkMax-2 500000000 3.78 ns/op
BenchmarkMin-2 500000000 3.42 ns/op
BenchmarkMod-2 30000000 56.8 ns/op
BenchmarkFrexp-2 200000000 8.73 ns/op
BenchmarkGamma-2 100000000 19.7 ns/op
BenchmarkHypot-2 300000000 4.67 ns/op
BenchmarkHypotGo-2 100000000 11.1 ns/op
BenchmarkIlogb-2 200000000 8.43 ns/op
BenchmarkJ0-2 20000000 84.4 ns/op
BenchmarkJ1-2 20000000 85.0 ns/op
BenchmarkJn-2 10000000 185 ns/op
BenchmarkLdexp-2 200000000 9.85 ns/op
BenchmarkLgamma-2 100000000 17.5 ns/op
BenchmarkLog-2 100000000 14.4 ns/op
BenchmarkLogb-2 200000000 8.68 ns/op
BenchmarkLog1p-2 50000000 25.1 ns/op
BenchmarkLog10-2 100000000 17.1 ns/op
BenchmarkLog2-2 100000000 11.0 ns/op
BenchmarkModf-2 300000000 5.08 ns/op
BenchmarkNextafter32-2 300000000 5.83 ns/op
BenchmarkNextafter64-2 300000000 5.45 ns/op
BenchmarkPowInt-2 50000000 38.3 ns/op
BenchmarkPowFrac-2 10000000 124 ns/op
BenchmarkPow10Pos-2 30000000 54.2 ns/op
BenchmarkPow10Neg-2 30000000 57.9 ns/op
BenchmarkRemainder-2 30000000 42.3 ns/op
BenchmarkSignbit-2 2000000000 1.04 ns/op
BenchmarkSin-2 100000000 13.0 ns/op
BenchmarkSincos-2 100000000 22.8 ns/op
BenchmarkSinh-2 30000000 41.4 ns/op
BenchmarkSqrt-2 1000000000 2.26 ns/op
BenchmarkSqrtIndirect-2 500000000 3.47 ns/op
BenchmarkSqrtGo-2 30000000 54.8 ns/op
BenchmarkSqrtPrime-2 500000 3511 ns/op
BenchmarkTan-2 100000000 14.3 ns/op
BenchmarkTanh-2 50000000 26.2 ns/op
BenchmarkTrunc-2 1000000000 2.85 ns/op
BenchmarkY0-2 20000000 83.1 ns/op
BenchmarkY1-2 20000000 87.6 ns/op
BenchmarkYn-2 10000000 182 ns/op
ok math 115.882s
PASS
BenchmarkAddVV_1-2 300000000 5.55 ns/op 11526.41 MB/s
BenchmarkAddVV_2-2 200000000 6.54 ns/op 19569.00 MB/s
BenchmarkAddVV_3-2 200000000 7.39 ns/op 25996.82 MB/s
BenchmarkAddVV_4-2 200000000 8.45 ns/op 30280.25 MB/s
BenchmarkAddVV_5-2 200000000 9.71 ns/op 32947.86 MB/s
BenchmarkAddVV_1e1-2 100000000 12.4 ns/op 51732.80 MB/s
BenchmarkAddVV_1e2-2 20000000 63.5 ns/op 100711.37 MB/s
BenchmarkAddVV_1e3-2 3000000 577 ns/op 110758.11 MB/s
BenchmarkAddVV_1e4-2 200000 7218 ns/op 88665.35 MB/s
BenchmarkAddVV_1e5-2 10000 108851 ns/op 58795.92 MB/s
BenchmarkAddVW_1-2 300000000 4.79 ns/op 1670.00 MB/s
BenchmarkAddVW_2-2 300000000 5.13 ns/op 3119.47 MB/s
BenchmarkAddVW_3-2 300000000 5.75 ns/op 4170.77 MB/s
BenchmarkAddVW_4-2 200000000 6.14 ns/op 5210.44 MB/s
BenchmarkAddVW_5-2 200000000 7.10 ns/op 5636.95 MB/s
BenchmarkAddVW_1e1-2 100000000 10.5 ns/op 7625.10 MB/s
BenchmarkAddVW_1e2-2 20000000 59.7 ns/op 13411.36 MB/s
BenchmarkAddVW_1e3-2 3000000 577 ns/op 13855.42 MB/s
BenchmarkAddVW_1e4-2 300000 5733 ns/op 13953.44 MB/s
BenchmarkAddVW_1e5-2 20000 72989 ns/op 10960.41 MB/s
BenchmarkAddMulVVW_1-2 300000000 4.89 ns/op 13079.89 MB/s
BenchmarkAddMulVVW_2-2 300000000 5.71 ns/op 22431.52 MB/s
BenchmarkAddMulVVW_3-2 200000000 7.06 ns/op 27209.53 MB/s
BenchmarkAddMulVVW_4-2 200000000 8.18 ns/op 31309.54 MB/s
BenchmarkAddMulVVW_5-2 200000000 9.74 ns/op 32869.36 MB/s
BenchmarkAddMulVVW_1e1-2 100000000 16.4 ns/op 39098.77 MB/s
BenchmarkAddMulVVW_1e2-2 20000000 112 ns/op 56889.21 MB/s
BenchmarkAddMulVVW_1e3-2 1000000 1083 ns/op 59050.09 MB/s
BenchmarkAddMulVVW_1e4-2 200000 11186 ns/op 57212.13 MB/s
BenchmarkAddMulVVW_1e5-2 10000 114049 ns/op 56115.87 MB/s
BenchmarkBitLen0-2 1000000000 2.28 ns/op
BenchmarkBitLen1-2 1000000000 2.13 ns/op
BenchmarkBitLen2-2 1000000000 2.13 ns/op
BenchmarkBitLen3-2 1000000000 2.13 ns/op
BenchmarkBitLen4-2 1000000000 2.12 ns/op
BenchmarkBitLen5-2 1000000000 2.13 ns/op
BenchmarkBitLen8-2 1000000000 2.12 ns/op
BenchmarkBitLen9-2 1000000000 2.12 ns/op
BenchmarkBitLen16-2 1000000000 2.12 ns/op
BenchmarkBitLen17-2 1000000000 2.13 ns/op
BenchmarkBitLen31-2 1000000000 2.12 ns/op
BenchmarkDecimalConversion-2 10000 218862 ns/op
BenchmarkParseFloatSmallExp-2 100000 17433 ns/op
BenchmarkParseFloatLargeExp-2 20000 63394 ns/op
BenchmarkGCD10x10-2 1000000 1355 ns/op
BenchmarkGCD10x100-2 1000000 1508 ns/op
BenchmarkGCD10x1000-2 1000000 2095 ns/op
BenchmarkGCD10x10000-2 200000 7174 ns/op
BenchmarkGCD10x100000-2 20000 59640 ns/op
BenchmarkGCD100x100-2 200000 7161 ns/op
BenchmarkGCD100x1000-2 200000 8241 ns/op
BenchmarkGCD100x10000-2 100000 20211 ns/op
BenchmarkGCD100x100000-2 10000 129430 ns/op
BenchmarkGCD1000x1000-2 20000 82582 ns/op
BenchmarkGCD1000x10000-2 10000 100367 ns/op
BenchmarkGCD1000x100000-2 5000 248457 ns/op
BenchmarkGCD10000x10000-2 1000 2024846 ns/op
BenchmarkGCD10000x100000-2 500 2524148 ns/op
BenchmarkGCD100000x100000-2 10 137013968 ns/op
BenchmarkHilbert-2 500 3711737 ns/op
BenchmarkBinomial-2 300000 4496 ns/op
BenchmarkBitset-2 50000000 26.9 ns/op
BenchmarkBitsetNeg-2 20000000 94.0 ns/op
BenchmarkBitsetOrig-2 5000000 301 ns/op
BenchmarkBitsetNegOrig-2 3000000 481 ns/op
BenchmarkModSqrt225_Tonelli-2 1000 1663012 ns/op
BenchmarkModSqrt224_3Mod4-2 10000 201560 ns/op
BenchmarkModSqrt5430_Tonelli-2 1 2965643523 ns/op
BenchmarkModSqrt5430_3Mod4-2 2 978786118 ns/op
BenchmarkMul-2 100 16076832 ns/op
BenchmarkExp3Power0x10-2 3000000 528 ns/op
BenchmarkExp3Power0x40-2 3000000 593 ns/op
BenchmarkExp3Power0x100-2 2000000 836 ns/op
BenchmarkExp3Power0x400-2 1000000 1672 ns/op
BenchmarkExp3Power0x1000-2 200000 7834 ns/op
BenchmarkExp3Power0x4000-2 30000 58107 ns/op
BenchmarkExp3Power0x10000-2 3000 478599 ns/op
BenchmarkExp3Power0x40000-2 300 4442914 ns/op
BenchmarkExp3Power0x100000-2 30 40274311 ns/op
BenchmarkExp3Power0x400000-2 3 359353650 ns/op
BenchmarkFibo-2 50 36693263 ns/op
BenchmarkScanPi-2 10000 135416 ns/op
BenchmarkStringPiParallel-2 10000 172767 ns/op
BenchmarkScan10Base2-2 3000000 446 ns/op
BenchmarkScan100Base2-2 500000 2779 ns/op
BenchmarkScan1000Base2-2 50000 27089 ns/op
BenchmarkScan10000Base2-2 3000 406664 ns/op
BenchmarkScan100000Base2-2 100 18148655 ns/op
BenchmarkScan10Base8-2 10000000 228 ns/op
BenchmarkScan100Base8-2 1000000 1127 ns/op
BenchmarkScan1000Base8-2 200000 11301 ns/op
BenchmarkScan10000Base8-2 5000 249871 ns/op
BenchmarkScan100000Base8-2 100 16501412 ns/op
BenchmarkScan10Base10-2 10000000 216 ns/op
BenchmarkScan100Base10-2 1000000 1055 ns/op
BenchmarkScan1000Base10-2 200000 10568 ns/op
BenchmarkScan10000Base10-2 5000 242843 ns/op
BenchmarkScan100000Base10-2 100 16410987 ns/op
BenchmarkScan10Base16-2 10000000 196 ns/op
BenchmarkScan100Base16-2 2000000 884 ns/op
BenchmarkScan1000Base16-2 200000 10146 ns/op
BenchmarkScan10000Base16-2 5000 270931 ns/op
BenchmarkScan100000Base16-2 100 17481702 ns/op
BenchmarkString10Base2-2 10000000 190 ns/op
BenchmarkString100Base2-2 2000000 1002 ns/op
BenchmarkString1000Base2-2 200000 8664 ns/op
BenchmarkString10000Base2-2 20000 85666 ns/op
BenchmarkString100000Base2-2 2000 882838 ns/op
BenchmarkString10Base8-2 10000000 123 ns/op
BenchmarkString100Base8-2 5000000 383 ns/op
BenchmarkString1000Base8-2 500000 2953 ns/op
BenchmarkString10000Base8-2 50000 28288 ns/op
BenchmarkString100000Base8-2 5000 273591 ns/op
BenchmarkString10Base10-2 5000000 328 ns/op
BenchmarkString100Base10-2 1000000 1229 ns/op
BenchmarkString1000Base10-2 200000 6195 ns/op
BenchmarkString10000Base10-2 50000 25816 ns/op
BenchmarkString100000Base10-2 200 8524297 ns/op
BenchmarkString10Base16-2 20000000 120 ns/op
BenchmarkString100Base16-2 5000000 316 ns/op
BenchmarkString1000Base16-2 1000000 2206 ns/op
BenchmarkString10000Base16-2 100000 20740 ns/op
BenchmarkString100000Base16-2 10000 204708 ns/op
BenchmarkLeafSize0-2 500 3753168 ns/op
BenchmarkLeafSize1-2 50000 34571 ns/op
BenchmarkLeafSize2-2 50000 33583 ns/op
BenchmarkLeafSize3-2 10000 138413 ns/op
BenchmarkLeafSize4-2 50000 34284 ns/op
BenchmarkLeafSize5-2 10000 171567 ns/op
BenchmarkLeafSize6-2 10000 137487 ns/op
BenchmarkLeafSize7-2 20000 93492 ns/op
BenchmarkLeafSize8-2 50000 33294 ns/op
BenchmarkLeafSize9-2 10000 194772 ns/op
BenchmarkLeafSize10-2 10000 170883 ns/op
BenchmarkLeafSize11-2 10000 168538 ns/op
BenchmarkLeafSize12-2 10000 137394 ns/op
BenchmarkLeafSize13-2 10000 132193 ns/op
BenchmarkLeafSize14-2 20000 94382 ns/op
BenchmarkLeafSize15-2 20000 70160 ns/op
BenchmarkLeafSize16-2 50000 34789 ns/op
BenchmarkLeafSize32-2 50000 40093 ns/op
BenchmarkLeafSize64-2 20000 69770 ns/op
ok math/big 354.572s
PASS
BenchmarkAbs-2 200000000 7.29 ns/op
BenchmarkAcos-2 10000000 139 ns/op
BenchmarkAcosh-2 10000000 145 ns/op
BenchmarkAsin-2 10000000 134 ns/op
BenchmarkAsinh-2 10000000 128 ns/op
BenchmarkAtan-2 20000000 65.3 ns/op
BenchmarkAtanh-2 20000000 68.1 ns/op
BenchmarkConj-2 2000000000 0.76 ns/op
BenchmarkCos-2 30000000 52.9 ns/op
BenchmarkCosh-2 30000000 52.5 ns/op
BenchmarkExp-2 30000000 43.5 ns/op
BenchmarkLog-2 20000000 73.8 ns/op
BenchmarkLog10-2 20000000 83.7 ns/op
BenchmarkPhase-2 50000000 32.0 ns/op
BenchmarkPolar-2 30000000 42.2 ns/op
BenchmarkPow-2 5000000 288 ns/op
BenchmarkRect-2 50000000 26.7 ns/op
BenchmarkSin-2 30000000 52.8 ns/op
BenchmarkSinh-2 30000000 52.7 ns/op
BenchmarkSqrt-2 100000000 22.3 ns/op
BenchmarkTan-2 10000000 135 ns/op
BenchmarkTanh-2 10000000 122 ns/op
ok math/cmplx 34.990s
PASS
BenchmarkInt63Threadsafe-2 50000000 31.0 ns/op
BenchmarkInt63Unthreadsafe-2 200000000 9.32 ns/op
BenchmarkIntn1000-2 100000000 22.3 ns/op
BenchmarkInt63n1000-2 50000000 32.7 ns/op
BenchmarkInt31n1000-2 100000000 18.6 ns/op
BenchmarkFloat32-2 100000000 15.4 ns/op
BenchmarkFloat64-2 100000000 12.0 ns/op
BenchmarkPerm3-2 10000000 137 ns/op
BenchmarkPerm30-2 2000000 930 ns/op
BenchmarkRead3-2 100000000 14.3 ns/op
BenchmarkRead64-2 10000000 149 ns/op
BenchmarkRead1000-2 1000000 2090 ns/op
ok math/rand 22.485s
PASS
BenchmarkQEncodeWord-2 2000000 634 ns/op
BenchmarkQDecodeWord-2 3000000 539 ns/op
BenchmarkQDecodeHeader-2 3000000 542 ns/op
ok mime 6.253s
PASS
ok mime/multipart 0.006s
PASS
BenchmarkWriter-2 200000 6859 ns/op
ok mime/quotedprintable 1.448s
PASS
BenchmarkGoLookupIP-2 5000 349589 ns/op
BenchmarkGoLookupIPNoSuchHost-2 1000 1221272 ns/op
BenchmarkGoLookupIPWithBrokenNameServer-2 1 5002725295 ns/op
BenchmarkDNSName-2 3000000 452 ns/op
BenchmarkInterfaces-2 50000 24732 ns/op
BenchmarkInterfaceByIndex-2 100000 22564 ns/op
BenchmarkInterfaceByName-2 50000 25581 ns/op
BenchmarkInterfaceAddrs-2 30000 49192 ns/op
BenchmarkInterfacesAndAddrs-2 100000 21812 ns/op
BenchmarkInterfacesAndMulticastAddrs-2 20000 71832 ns/op
BenchmarkParseIP-2 500000 3271 ns/op
BenchmarkIPString-2 1000000 1795 ns/op
BenchmarkIPMaskString-2 2000000 632 ns/op
BenchmarkTCP4OneShot-2 30000 47697 ns/op
BenchmarkTCP4OneShotTimeout-2 30000 50302 ns/op