-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo1.8.4.linux-amd64-bench.txt
1916 lines (1916 loc) · 115 KB
/
go1.8.4.linux-amd64-bench.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
PASS
ok archive/tar 0.003s
BenchmarkCompressedZipGarbage-2 100 16474450 ns/op 5592 B/op 44 allocs/op
BenchmarkZip64Test-2 10 109602734 ns/op
PASS
ok archive/zip 2.913s
BenchmarkReaderCopyOptimal-2 10000000 130 ns/op
BenchmarkReaderCopyUnoptimal-2 10000000 206 ns/op
BenchmarkReaderCopyNoWriteTo-2 300000 4083 ns/op
BenchmarkReaderWriteToOptimal-2 3000000 397 ns/op
BenchmarkWriterCopyOptimal-2 10000000 134 ns/op
BenchmarkWriterCopyUnoptimal-2 10000000 180 ns/op
BenchmarkWriterCopyNoReadFrom-2 300000 4208 ns/op
BenchmarkReaderEmpty-2 1000000 1019 ns/op 4224 B/op 3 allocs/op
BenchmarkWriterEmpty-2 2000000 806 ns/op 4096 B/op 1 allocs/op
BenchmarkWriterFlush-2 100000000 18.4 ns/op 0 B/op 0 allocs/op
PASS
ok bufio 16.701s
? builtin [no test files]
BenchmarkReadString-2 200000 6985 ns/op 4691.00 MB/s
BenchmarkWriteRune-2 30000 58003 ns/op 211.85 MB/s
BenchmarkBufferNotEmptyWriteRead-2 5000 335776 ns/op
BenchmarkBufferFullSmallReads-2 10000 105538 ns/op
BenchmarkIndexByte/10-2 300000000 4.59 ns/op 2178.03 MB/s
BenchmarkIndexByte/32-2 200000000 6.11 ns/op 5241.19 MB/s
BenchmarkIndexByte/4K-2 20000000 108 ns/op 37591.62 MB/s
BenchmarkIndexByte/4M-2 10000 179546 ns/op 23360.59 MB/s
BenchmarkIndexByte/64M-2 200 7774417 ns/op 8632.01 MB/s
BenchmarkIndexBytePortable/10-2 200000000 7.63 ns/op 1310.85 MB/s
BenchmarkIndexBytePortable/32-2 50000000 31.5 ns/op 1016.57 MB/s
BenchmarkIndexBytePortable/4K-2 1000000 1963 ns/op 2086.30 MB/s
BenchmarkIndexBytePortable/4M-2 1000 2039775 ns/op 2056.26 MB/s
BenchmarkIndexBytePortable/64M-2 50 33188838 ns/op 2022.03 MB/s
BenchmarkIndexRune/10-2 100000000 19.3 ns/op 517.26 MB/s
BenchmarkIndexRune/32-2 100000000 22.4 ns/op 1429.15 MB/s
BenchmarkIndexRune/4K-2 10000000 126 ns/op 32330.87 MB/s
BenchmarkIndexRune/4M-2 10000 178939 ns/op 23439.80 MB/s
BenchmarkIndexRune/64M-2 200 7819582 ns/op 8582.15 MB/s
BenchmarkIndexRuneASCII/10-2 200000000 7.22 ns/op 1385.71 MB/s
BenchmarkIndexRuneASCII/32-2 200000000 8.54 ns/op 3748.66 MB/s
BenchmarkIndexRuneASCII/4K-2 20000000 111 ns/op 36892.95 MB/s
BenchmarkIndexRuneASCII/4M-2 10000 175944 ns/op 23838.81 MB/s
BenchmarkIndexRuneASCII/64M-2 200 10816013 ns/op 6204.58 MB/s
BenchmarkEqual/0-2 500000000 3.78 ns/op
BenchmarkEqual/1-2 300000000 5.03 ns/op 198.87 MB/s
BenchmarkEqual/6-2 300000000 5.02 ns/op 1194.97 MB/s
BenchmarkEqual/9-2 300000000 5.00 ns/op 1800.57 MB/s
BenchmarkEqual/15-2 300000000 5.00 ns/op 3000.95 MB/s
BenchmarkEqual/16-2 300000000 5.03 ns/op 3180.51 MB/s
BenchmarkEqual/20-2 200000000 6.07 ns/op 3297.51 MB/s
BenchmarkEqual/32-2 200000000 7.55 ns/op 4239.48 MB/s
BenchmarkEqual/4K-2 20000000 84.6 ns/op 48404.66 MB/s
BenchmarkEqual/4M-2 5000 360376 ns/op 11638.68 MB/s
BenchmarkEqual/64M-2 100 12928045 ns/op 5190.95 MB/s
BenchmarkEqualPort/1-2 300000000 4.88 ns/op 205.12 MB/s
BenchmarkEqualPort/6-2 200000000 8.23 ns/op 729.32 MB/s
BenchmarkEqualPort/32-2 50000000 26.9 ns/op 1189.44 MB/s
BenchmarkEqualPort/4K-2 500000 3138 ns/op 1305.27 MB/s
BenchmarkEqualPort/4M-2 500 3311250 ns/op 1266.68 MB/s
BenchmarkEqualPort/64M-2 30 53224046 ns/op 1260.87 MB/s
BenchmarkIndex/10-2 100000000 15.6 ns/op 641.29 MB/s
BenchmarkIndex/32-2 100000000 13.8 ns/op 2314.26 MB/s
BenchmarkIndex/4K-2 300000 4698 ns/op 871.70 MB/s
BenchmarkIndex/4M-2 300 4879448 ns/op 859.59 MB/s
BenchmarkIndex/64M-2 20 77478711 ns/op 866.16 MB/s
BenchmarkIndexEasy/10-2 100000000 10.7 ns/op 930.34 MB/s
BenchmarkIndexEasy/32-2 100000000 13.6 ns/op 2356.05 MB/s
BenchmarkIndexEasy/4K-2 10000000 123 ns/op 33060.60 MB/s
BenchmarkIndexEasy/4M-2 10000 190931 ns/op 21967.54 MB/s
BenchmarkIndexEasy/64M-2 200 10632452 ns/op 6311.70 MB/s
BenchmarkCount/10-2 50000000 30.1 ns/op 332.29 MB/s
BenchmarkCount/32-2 10000000 179 ns/op 178.74 MB/s
BenchmarkCount/4K-2 50000 32831 ns/op 124.76 MB/s
BenchmarkCount/4M-2 50 34083009 ns/op 123.06 MB/s
BenchmarkCount/64M-2 2 543094725 ns/op 123.57 MB/s
BenchmarkCountEasy/10-2 100000000 18.0 ns/op 556.13 MB/s
BenchmarkCountEasy/32-2 100000000 19.7 ns/op 1624.12 MB/s
BenchmarkCountEasy/4K-2 10000000 128 ns/op 31959.71 MB/s
BenchmarkCountEasy/4M-2 10000 196995 ns/op 21291.39 MB/s
BenchmarkCountEasy/64M-2 200 8239750 ns/op 8144.53 MB/s
BenchmarkFields-2 50 28702332 ns/op 36.53 MB/s
BenchmarkFieldsFunc-2 50 28246460 ns/op 37.12 MB/s
BenchmarkTrimSpace-2 30000000 50.8 ns/op
BenchmarkRepeat-2 20000000 113 ns/op
BenchmarkBytesCompare/1-2 200000000 6.02 ns/op
BenchmarkBytesCompare/2-2 300000000 5.98 ns/op
BenchmarkBytesCompare/4-2 300000000 5.97 ns/op
BenchmarkBytesCompare/8-2 300000000 5.01 ns/op
BenchmarkBytesCompare/16-2 300000000 4.94 ns/op
BenchmarkBytesCompare/32-2 300000000 5.89 ns/op
BenchmarkBytesCompare/64-2 200000000 7.22 ns/op
BenchmarkBytesCompare/128-2 200000000 8.75 ns/op
BenchmarkBytesCompare/256-2 100000000 11.8 ns/op
BenchmarkBytesCompare/512-2 100000000 18.2 ns/op
BenchmarkBytesCompare/1024-2 50000000 30.8 ns/op
BenchmarkBytesCompare/2048-2 20000000 65.0 ns/op
BenchmarkIndexAnyASCII/1:1-2 200000000 6.07 ns/op
BenchmarkIndexAnyASCII/1:2-2 200000000 6.68 ns/op
BenchmarkIndexAnyASCII/1:4-2 200000000 8.06 ns/op
BenchmarkIndexAnyASCII/1:8-2 100000000 10.7 ns/op
BenchmarkIndexAnyASCII/1:16-2 100000000 16.4 ns/op
BenchmarkIndexAnyASCII/16:1-2 30000000 45.4 ns/op
BenchmarkIndexAnyASCII/16:2-2 30000000 45.9 ns/op
BenchmarkIndexAnyASCII/16:4-2 30000000 52.2 ns/op
BenchmarkIndexAnyASCII/16:8-2 20000000 60.8 ns/op
BenchmarkIndexAnyASCII/16:16-2 20000000 77.1 ns/op
BenchmarkIndexAnyASCII/256:1-2 3000000 478 ns/op
BenchmarkIndexAnyASCII/256:2-2 3000000 481 ns/op
BenchmarkIndexAnyASCII/256:4-2 3000000 490 ns/op
BenchmarkIndexAnyASCII/256:8-2 3000000 498 ns/op
BenchmarkIndexAnyASCII/256:16-2 3000000 515 ns/op
BenchmarkIndexAnyASCII/4096:1-2 200000 7401 ns/op
BenchmarkIndexAnyASCII/4096:2-2 200000 7424 ns/op
BenchmarkIndexAnyASCII/4096:4-2 200000 7397 ns/op
BenchmarkIndexAnyASCII/4096:8-2 200000 7416 ns/op
BenchmarkIndexAnyASCII/4096:16-2 200000 7481 ns/op
BenchmarkTrimASCII/1:1-2 20000000 66.5 ns/op
BenchmarkTrimASCII/1:2-2 20000000 103 ns/op
BenchmarkTrimASCII/1:4-2 20000000 108 ns/op
BenchmarkTrimASCII/1:8-2 20000000 116 ns/op
BenchmarkTrimASCII/1:16-2 10000000 133 ns/op
BenchmarkTrimASCII/16:1-2 10000000 122 ns/op
BenchmarkTrimASCII/16:2-2 10000000 169 ns/op
BenchmarkTrimASCII/16:4-2 10000000 172 ns/op
BenchmarkTrimASCII/16:8-2 10000000 180 ns/op
BenchmarkTrimASCII/16:16-2 10000000 198 ns/op
BenchmarkTrimASCII/256:1-2 1000000 1010 ns/op
BenchmarkTrimASCII/256:2-2 1000000 1187 ns/op
BenchmarkTrimASCII/256:4-2 1000000 1196 ns/op
BenchmarkTrimASCII/256:8-2 1000000 1202 ns/op
BenchmarkTrimASCII/256:16-2 1000000 1223 ns/op
BenchmarkTrimASCII/4096:1-2 100000 15127 ns/op
BenchmarkTrimASCII/4096:2-2 100000 17441 ns/op
BenchmarkTrimASCII/4096:4-2 100000 17379 ns/op
BenchmarkTrimASCII/4096:8-2 100000 17367 ns/op
BenchmarkTrimASCII/4096:16-2 100000 17401 ns/op
BenchmarkCompareBytesEqual-2 300000000 5.34 ns/op
BenchmarkCompareBytesToNil-2 300000000 4.23 ns/op
BenchmarkCompareBytesEmpty-2 500000000 3.83 ns/op
BenchmarkCompareBytesIdentical-2 500000000 3.80 ns/op
BenchmarkCompareBytesSameLength-2 300000000 5.31 ns/op
BenchmarkCompareBytesDifferentLength-2 300000000 5.34 ns/op
BenchmarkCompareBytesBigUnaligned-2 20000 80827 ns/op 12973.14 MB/s
BenchmarkCompareBytesBig-2 20000 86831 ns/op 12076.13 MB/s
BenchmarkCompareBytesBigIdentical-2 500000000 3.84 ns/op 273185886.06 MB/s
PASS
ok bytes 234.956s
PASS
ok cmd/addr2line 0.004s
--- FAIL: BenchmarkAll
goapi_test.go:168: exec: "go": executable file not found in $PATH
FAIL
exit status 1
FAIL cmd/api 0.004s
? 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/cgo [no test files]
PASS
ok cmd/compile 0.005s
? cmd/compile/internal/amd64 [no test files]
? cmd/compile/internal/arm [no test files]
? cmd/compile/internal/arm64 [no test files]
BenchmarkEfaceInteger-2 500000000 3.60 ns/op
PASS
ok cmd/compile/internal/gc 2.174s
? 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]
BenchmarkCopyElim1-2 500000 2133 ns/op
BenchmarkCopyElim10-2 200000 7610 ns/op
BenchmarkCopyElim100-2 20000 60795 ns/op
BenchmarkCopyElim1000-2 2000 650772 ns/op
BenchmarkCopyElim10000-2 100 12494954 ns/op
BenchmarkCopyElim100000-2 10 204335992 ns/op
BenchmarkDeadCode/1-2 1000000 2411 ns/op
BenchmarkDeadCode/10-2 200000 6613 ns/op
BenchmarkDeadCode/100-2 30000 49526 ns/op
BenchmarkDeadCode/1000-2 2000 783135 ns/op
BenchmarkDeadCode/10000-2 100 10456390 ns/op
BenchmarkDeadCode/100000-2 10 164728019 ns/op
BenchmarkDeadCode/200000-2 3 373767366 ns/op
BenchmarkDominatorsLinear-2 2000 985380 ns/op 10.15 MB/s
BenchmarkDominatorsFwdBack-2 1000 1639432 ns/op 6.10 MB/s
BenchmarkDominatorsManyPred-2 1000 1324540 ns/op 7.55 MB/s
BenchmarkDominatorsMaxPred-2 1000 1402479 ns/op 7.13 MB/s
BenchmarkDominatorsMaxPredVal-2 1000 1419313 ns/op 7.05 MB/s
BenchmarkFuse/1-2 500000 3415 ns/op
BenchmarkFuse/10-2 100000 15593 ns/op
BenchmarkFuse/100-2 10000 127137 ns/op
BenchmarkFuse/1000-2 1000 1968372 ns/op
BenchmarkFuse/10000-2 50 27154133 ns/op
BenchmarkNilCheckDeep1-2 10000000 152 ns/op 6.58 MB/s 5 B/op 1 allocs/op
BenchmarkNilCheckDeep10-2 3000000 409 ns/op 24.45 MB/s 32 B/op 1 allocs/op
BenchmarkNilCheckDeep100-2 500000 3205 ns/op 31.20 MB/s 208 B/op 1 allocs/op
BenchmarkNilCheckDeep1000-2 50000 30261 ns/op 33.05 MB/s 2048 B/op 1 allocs/op
BenchmarkNilCheckDeep10000-2 3000 552627 ns/op 18.10 MB/s 20480 B/op 1 allocs/op
BenchmarkDSEPass-2 5000 404805 ns/op 41192 B/op 8 allocs/op
BenchmarkDSEPassBlock-2 300 4240718 ns/op 554873 B/op 400 allocs/op
BenchmarkCSEPass-2 500 2715553 ns/op 188864 B/op 11 allocs/op
BenchmarkCSEPassBlock-2 50 28828776 ns/op 3204002 B/op 3300 allocs/op
BenchmarkDeadcodePass-2 30000 53369 ns/op 10505 B/op 3 allocs/op
BenchmarkDeadcodePassBlock-2 2000 677632 ns/op 153696 B/op 22 allocs/op
BenchmarkMultiPass-2 10000 186218 ns/op 240248 B/op 13 allocs/op
BenchmarkMultiPassBlock-2 300 4279036 ns/op 3452073 B/op 650 allocs/op
PASS
ok cmd/compile/internal/ssa 85.342s
PASS
ok cmd/compile/internal/syntax 0.007s
BenchmarkDivconstI64-2 2000000000 1.26 ns/op
BenchmarkDivconstU64-2 1000000000 2.19 ns/op
BenchmarkDivconstI32-2 1000000000 2.23 ns/op
BenchmarkDivconstU32-2 1000000000 2.12 ns/op
BenchmarkDivconstI16-2 1000000000 2.18 ns/op
BenchmarkDivconstU16-2 1000000000 2.38 ns/op
BenchmarkDivconstI8-2 1000000000 2.18 ns/op
BenchmarkDivconstU8-2 1000000000 2.06 ns/op
PASS
ok cmd/compile/internal/test 19.551s
? cmd/compile/internal/x86 [no test files]
PASS
ok cmd/cover 0.006s
? cmd/dist [no test files]
PASS
ok cmd/doc 0.004s
PASS
ok cmd/fix 0.003s
exit status 2
FAIL cmd/go 0.009s
PASS
ok cmd/gofmt 0.003s
? cmd/internal/bio [no test files]
? cmd/internal/browser [no test files]
? cmd/internal/dwarf [no test files]
? cmd/internal/gcprog [no test files]
PASS
ok cmd/internal/goobj 0.003s
PASS
ok cmd/internal/obj 0.003s
? 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.003s
? cmd/internal/objfile [no test files]
? cmd/internal/sys [no test files]
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]
? cmd/link/internal/ld [no test files]
? cmd/link/internal/mips [no test files]
? cmd/link/internal/mips64 [no test files]
? cmd/link/internal/ppc64 [no test files]
? cmd/link/internal/s390x [no test files]
? cmd/link/internal/x86 [no test files]
PASS
ok cmd/nm 0.003s
PASS
ok cmd/objdump 0.397s
PASS
ok cmd/pack 0.004s
? 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]
? 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]
PASS
ok cmd/trace 0.007s
PASS
ok cmd/vendor/golang.org/x/arch/arm/armasm 0.003s
PASS
ok cmd/vendor/golang.org/x/arch/ppc64/ppc64asm 0.003s
PASS
ok cmd/vendor/golang.org/x/arch/x86/x86asm 0.003s
PASS
ok cmd/vet 0.018s
PASS
ok cmd/vet/internal/cfg 0.003s
? cmd/vet/internal/whitelist [no test files]
BenchmarkDecodeDigits-2 200 7528086 ns/op 13.28 MB/s 3612102 B/op 40 allocs/op
BenchmarkDecodeTwain-2 50 25454761 ns/op 15.24 MB/s 3624677 B/op 40 allocs/op
BenchmarkDecodeRand-2 500 2512953 ns/op 6.52 MB/s 3643236 B/op 40 allocs/op
PASS
ok compress/bzip2 5.161s
BenchmarkDecode/Digits/Huffman/1e4-2 10000 159594 ns/op 62.66 MB/s 40620 B/op 5 allocs/op
BenchmarkDecode/Digits/Huffman/1e5-2 1000 1471550 ns/op 67.96 MB/s 40622 B/op 5 allocs/op
BenchmarkDecode/Digits/Huffman/1e6-2 100 14603133 ns/op 68.48 MB/s 40699 B/op 5 allocs/op
BenchmarkDecode/Digits/Speed/1e4-2 10000 163385 ns/op 61.20 MB/s 40700 B/op 8 allocs/op
BenchmarkDecode/Digits/Speed/1e5-2 1000 1639185 ns/op 61.01 MB/s 40910 B/op 11 allocs/op
BenchmarkDecode/Digits/Speed/1e6-2 100 16441898 ns/op 60.82 MB/s 44459 B/op 73 allocs/op
BenchmarkDecode/Digits/Default/1e4-2 10000 165110 ns/op 60.57 MB/s 40668 B/op 7 allocs/op
BenchmarkDecode/Digits/Default/1e5-2 1000 1581013 ns/op 63.25 MB/s 40910 B/op 13 allocs/op
BenchmarkDecode/Digits/Default/1e6-2 100 15810982 ns/op 63.25 MB/s 44875 B/op 79 allocs/op
BenchmarkDecode/Digits/Compression/1e4-2 10000 164340 ns/op 60.85 MB/s 40669 B/op 7 allocs/op
BenchmarkDecode/Digits/Compression/1e5-2 1000 1585480 ns/op 63.07 MB/s 40910 B/op 13 allocs/op
BenchmarkDecode/Digits/Compression/1e6-2 100 15846438 ns/op 63.11 MB/s 44875 B/op 79 allocs/op
BenchmarkDecode/Twain/Huffman/1e4-2 10000 181173 ns/op 55.20 MB/s 42007 B/op 15 allocs/op
BenchmarkDecode/Twain/Huffman/1e5-2 1000 1620833 ns/op 61.70 MB/s 43519 B/op 20 allocs/op
BenchmarkDecode/Twain/Huffman/1e6-2 100 16161180 ns/op 61.88 MB/s 71679 B/op 134 allocs/op
BenchmarkDecode/Twain/Speed/1e4-2 10000 172719 ns/op 57.90 MB/s 41271 B/op 17 allocs/op
BenchmarkDecode/Twain/Speed/1e5-2 1000 1546570 ns/op 64.66 MB/s 45112 B/op 30 allocs/op
BenchmarkDecode/Twain/Speed/1e6-2 100 15382097 ns/op 65.01 MB/s 72761 B/op 193 allocs/op
BenchmarkDecode/Twain/Default/1e4-2 10000 162554 ns/op 61.52 MB/s 41271 B/op 17 allocs/op
BenchmarkDecode/Twain/Default/1e5-2 1000 1311579 ns/op 76.24 MB/s 44343 B/op 28 allocs/op
BenchmarkDecode/Twain/Default/1e6-2 100 12665544 ns/op 78.95 MB/s 71081 B/op 199 allocs/op
BenchmarkDecode/Twain/Compression/1e4-2 10000 163415 ns/op 61.19 MB/s 41271 B/op 17 allocs/op
BenchmarkDecode/Twain/Compression/1e5-2 1000 1312658 ns/op 76.18 MB/s 43270 B/op 28 allocs/op
BenchmarkDecode/Twain/Compression/1e6-2 100 12651988 ns/op 79.04 MB/s 69223 B/op 196 allocs/op
BenchmarkEncode/Digits/Huffman/1e4-2 30000 45869 ns/op 218.01 MB/s
BenchmarkEncode/Digits/Huffman/1e5-2 3000 434504 ns/op 230.15 MB/s
BenchmarkEncode/Digits/Huffman/1e6-2 300 4383586 ns/op 228.12 MB/s
BenchmarkEncode/Digits/Speed/1e4-2 10000 208034 ns/op 48.07 MB/s
BenchmarkEncode/Digits/Speed/1e5-2 1000 1934179 ns/op 51.70 MB/s
BenchmarkEncode/Digits/Speed/1e6-2 100 19018369 ns/op 52.58 MB/s
BenchmarkEncode/Digits/Default/1e4-2 5000 368768 ns/op 27.12 MB/s
BenchmarkEncode/Digits/Default/1e5-2 300 5770560 ns/op 17.33 MB/s
BenchmarkEncode/Digits/Default/1e6-2 20 61488814 ns/op 16.26 MB/s
BenchmarkEncode/Digits/Compression/1e4-2 5000 375725 ns/op 26.62 MB/s
BenchmarkEncode/Digits/Compression/1e5-2 300 5844291 ns/op 17.11 MB/s
BenchmarkEncode/Digits/Compression/1e6-2 20 61938485 ns/op 16.15 MB/s
BenchmarkEncode/Twain/Huffman/1e4-2 20000 64159 ns/op 155.86 MB/s
BenchmarkEncode/Twain/Huffman/1e5-2 3000 513790 ns/op 194.63 MB/s
BenchmarkEncode/Twain/Huffman/1e6-2 300 5160722 ns/op 193.77 MB/s
BenchmarkEncode/Twain/Speed/1e4-2 5000 234455 ns/op 42.65 MB/s
BenchmarkEncode/Twain/Speed/1e5-2 1000 1956339 ns/op 51.12 MB/s
BenchmarkEncode/Twain/Speed/1e6-2 100 19544921 ns/op 51.16 MB/s
BenchmarkEncode/Twain/Default/1e4-2 3000 481745 ns/op 20.76 MB/s
BenchmarkEncode/Twain/Default/1e5-2 200 7794829 ns/op 12.83 MB/s
BenchmarkEncode/Twain/Default/1e6-2 20 84583191 ns/op 11.82 MB/s
BenchmarkEncode/Twain/Compression/1e4-2 3000 496378 ns/op 20.15 MB/s
BenchmarkEncode/Twain/Compression/1e5-2 200 8548609 ns/op 11.70 MB/s
BenchmarkEncode/Twain/Compression/1e6-2 20 95747644 ns/op 10.44 MB/s
PASS
ok compress/flate 84.540s
PASS
ok compress/gzip 0.004s
BenchmarkDecoder/1e4-2 10000 132074 ns/op 75.72 MB/s
BenchmarkDecoder/1e5-2 1000 1192600 ns/op 83.85 MB/s
BenchmarkDecoder/1e6-2 100 11592241 ns/op 86.26 MB/s
BenchmarkEncoder/1e4-2 10000 231353 ns/op 43.22 MB/s
BenchmarkEncoder/1e5-2 1000 2182091 ns/op 45.83 MB/s
BenchmarkEncoder/1e6-2 100 21548232 ns/op 46.41 MB/s
PASS
ok compress/lzw 10.814s
PASS
ok compress/zlib 0.011s
BenchmarkDup-2 2000 956350 ns/op
PASS
ok container/heap 2.019s
PASS
ok container/list 0.003s
PASS
ok container/ring 0.003s
BenchmarkContextCancelTree/depth=1/Root=Background-2 10000000 163 ns/op
BenchmarkContextCancelTree/depth=1/Root=OpenCanceler-2 2000000 829 ns/op
BenchmarkContextCancelTree/depth=1/Root=ClosedCanceler-2 3000000 498 ns/op
BenchmarkContextCancelTree/depth=10/Root=Background-2 300000 4111 ns/op
BenchmarkContextCancelTree/depth=10/Root=OpenCanceler-2 300000 5947 ns/op
BenchmarkContextCancelTree/depth=10/Root=ClosedCanceler-2 500000 2746 ns/op
BenchmarkContextCancelTree/depth=100/Root=Background-2 30000 43380 ns/op
BenchmarkContextCancelTree/depth=100/Root=OpenCanceler-2 30000 56546 ns/op
BenchmarkContextCancelTree/depth=100/Root=ClosedCanceler-2 50000 25018 ns/op
BenchmarkContextCancelTree/depth=1000/Root=Background-2 3000 462441 ns/op
BenchmarkContextCancelTree/depth=1000/Root=OpenCanceler-2 2000 610941 ns/op
BenchmarkContextCancelTree/depth=1000/Root=ClosedCanceler-2 5000 254137 ns/op
PASS
ok context 20.377s
? crypto [no test files]
BenchmarkEncrypt-2 100000000 13.7 ns/op 1165.32 MB/s
BenchmarkDecrypt-2 100000000 13.7 ns/op 1167.18 MB/s
BenchmarkExpand-2 20000000 77.1 ns/op
PASS
ok crypto/aes 4.400s
BenchmarkAESGCMSeal1K-2 5000000 353 ns/op 2896.24 MB/s
BenchmarkAESGCMOpen1K-2 5000000 335 ns/op 3048.12 MB/s
BenchmarkAESGCMSeal8K-2 1000000 2135 ns/op 3835.69 MB/s
BenchmarkAESGCMOpen8K-2 1000000 2053 ns/op 3989.62 MB/s
BenchmarkAESCFBEncrypt1K-2 500000 2751 ns/op 370.33 MB/s
BenchmarkAESCFBDecrypt1K-2 500000 2701 ns/op 377.14 MB/s
BenchmarkAESOFB1K-2 1000000 1534 ns/op 664.27 MB/s
BenchmarkAESCTR1K-2 1000000 1732 ns/op 588.04 MB/s
BenchmarkAESCBCEncrypt1K-2 1000000 2370 ns/op 431.98 MB/s
BenchmarkAESCBCDecrypt1K-2 1000000 1856 ns/op 551.64 MB/s
PASS
ok crypto/cipher 18.749s
BenchmarkEncrypt-2 3000000 594 ns/op 13.45 MB/s
BenchmarkDecrypt-2 3000000 588 ns/op 13.59 MB/s
PASS
ok crypto/des 4.753s
PASS
ok crypto/dsa 0.004s
BenchmarkSignP256-2 50000 39367 ns/op
BenchmarkSignP384-2 200 5905759 ns/op
BenchmarkVerifyP256-2 10000 108563 ns/op
BenchmarkKeyGeneration-2 100000 22816 ns/op
PASS
ok crypto/ecdsa 7.809s
BenchmarkBaseMult-2 2000 1020301 ns/op
BenchmarkBaseMultP256-2 100000 20805 ns/op
BenchmarkScalarMultP256-2 20000 80902 ns/op
PASS
ok crypto/elliptic 6.904s
BenchmarkHMACSHA256_1K-2 300000 4705 ns/op 217.61 MB/s
BenchmarkHMACSHA256_32-2 1000000 1217 ns/op 26.28 MB/s
PASS
ok crypto/hmac 2.698s
? crypto/internal/cipherhw [no test files]
BenchmarkHash8Bytes-2 10000000 199 ns/op 40.07 MB/s
BenchmarkHash1K-2 1000000 2118 ns/op 483.38 MB/s
BenchmarkHash8K-2 100000 15541 ns/op 527.12 MB/s
BenchmarkHash8BytesUnaligned-2 10000000 199 ns/op 40.15 MB/s
BenchmarkHash1KUnaligned-2 1000000 2110 ns/op 485.15 MB/s
BenchmarkHash8KUnaligned-2 100000 15441 ns/op 530.51 MB/s
PASS
ok crypto/md5 12.085s
BenchmarkPrime-2 10 132035603 ns/op
PASS
ok crypto/rand 1.500s
BenchmarkRC4_128-2 5000000 307 ns/op 416.61 MB/s
BenchmarkRC4_1K-2 500000 2840 ns/op 360.51 MB/s
BenchmarkRC4_8K-2 100000 22825 ns/op 354.69 MB/s
PASS
ok crypto/rc4 5.815s
BenchmarkRSA2048Decrypt-2 500 2482674 ns/op
BenchmarkRSA2048Sign-2 500 3144503 ns/op
Benchmark3PrimeRSA2048Decrypt-2 1000 1445625 ns/op
PASS
ok crypto/rsa 4.979s
BenchmarkHash8Bytes-2 10000000 234 ns/op 34.09 MB/s
BenchmarkHash320Bytes-2 2000000 863 ns/op 370.41 MB/s
BenchmarkHash1K-2 1000000 1724 ns/op 593.78 MB/s
BenchmarkHash8K-2 200000 11055 ns/op 740.98 MB/s
PASS
ok crypto/sha1 9.266s
BenchmarkHash8Bytes-2 5000000 329 ns/op 24.27 MB/s
BenchmarkHash1K-2 500000 3789 ns/op 270.23 MB/s
BenchmarkHash8K-2 50000 27995 ns/op 292.62 MB/s
PASS
ok crypto/sha256 5.604s
BenchmarkHash8Bytes-2 2000000 610 ns/op 13.11 MB/s
BenchmarkHash1K-2 300000 4425 ns/op 231.41 MB/s
BenchmarkHash8K-2 50000 30859 ns/op 265.46 MB/s
PASS
ok crypto/sha512 5.078s
PASS
ok crypto/subtle 0.004s
BenchmarkThroughput/MaxPacket/1MB-2 300 4306551 ns/op 243.48 MB/s
BenchmarkThroughput/MaxPacket/2MB-2 200 6531548 ns/op 321.08 MB/s
BenchmarkThroughput/MaxPacket/4MB-2 100 10967536 ns/op 382.43 MB/s
BenchmarkThroughput/MaxPacket/8MB-2 100 20540738 ns/op 408.39 MB/s
BenchmarkThroughput/MaxPacket/16MB-2 50 37104960 ns/op 452.16 MB/s
BenchmarkThroughput/MaxPacket/32MB-2 20 71982815 ns/op 466.15 MB/s
BenchmarkThroughput/MaxPacket/64MB-2 10 141072789 ns/op 475.70 MB/s
BenchmarkThroughput/DynamicPacket/1MB-2 300 4492206 ns/op 233.42 MB/s
BenchmarkThroughput/DynamicPacket/2MB-2 200 6775923 ns/op 309.50 MB/s
BenchmarkThroughput/DynamicPacket/4MB-2 100 11059820 ns/op 379.24 MB/s
BenchmarkThroughput/DynamicPacket/8MB-2 100 19887330 ns/op 421.81 MB/s
BenchmarkThroughput/DynamicPacket/16MB-2 50 37148933 ns/op 451.62 MB/s
BenchmarkThroughput/DynamicPacket/32MB-2 20 72377710 ns/op 463.60 MB/s
BenchmarkThroughput/DynamicPacket/64MB-2 10 141543859 ns/op 474.12 MB/s
BenchmarkLatency/MaxPacket/200kbps-2 2 695980099 ns/op
BenchmarkLatency/MaxPacket/500kbps-2 5 280207747 ns/op
BenchmarkLatency/MaxPacket/1000kbps-2 10 141673183 ns/op
BenchmarkLatency/MaxPacket/2000kbps-2 20 72492277 ns/op
BenchmarkLatency/MaxPacket/5000kbps-2 50 30921589 ns/op
BenchmarkLatency/DynamicPacket/200kbps-2 10 135643714 ns/op
BenchmarkLatency/DynamicPacket/500kbps-2 20 56229356 ns/op
BenchmarkLatency/DynamicPacket/1000kbps-2 50 30061604 ns/op
BenchmarkLatency/DynamicPacket/2000kbps-2 100 16636053 ns/op
BenchmarkLatency/DynamicPacket/5000kbps-2 200 8647534 ns/op
PASS
ok crypto/tls 41.554s
PASS
ok crypto/x509 0.010s
? crypto/x509/pkix [no test files]
BenchmarkConcurrentDBExec-2 100 11196738 ns/op 2507019 B/op 16143 allocs/op
BenchmarkConcurrentStmtQuery-2 100 11303873 ns/op 2617024 B/op 19158 allocs/op
BenchmarkConcurrentStmtExec-2 200 8974365 ns/op 1916240 B/op 4675 allocs/op
BenchmarkConcurrentTxQuery-2 100 12001655 ns/op 2672706 B/op 21657 allocs/op
BenchmarkConcurrentTxExec-2 500 3110364 ns/op 591027 B/op 15150 allocs/op
BenchmarkConcurrentTxStmtQuery-2 500 3445009 ns/op 809033 B/op 19158 allocs/op
BenchmarkConcurrentTxStmtExec-2 2000 1012830 ns/op 116106 B/op 3175 allocs/op
BenchmarkConcurrentRandom-2 200 9470729 ns/op 1823770 B/op 15256 allocs/op
BenchmarkManyConcurrentQueries-2 50000 37281 ns/op 4424 B/op 26 allocs/op
PASS
ok database/sql 17.393s
PASS
ok database/sql/driver 0.003s
PASS
ok debug/dwarf 0.003s
PASS
ok debug/elf 0.004s
PASS
ok debug/gosym 0.003s
PASS
ok debug/macho 0.003s
PASS
ok debug/pe 0.003s
PASS
ok debug/plan9obj 0.003s
? encoding [no test files]
PASS
ok encoding/ascii85 0.003s
BenchmarkMarshal-2 50000 35512 ns/op 7824 B/op 317 allocs/op
PASS
ok encoding/asn1 2.144s
BenchmarkEncodeToString-2 50000 30570 ns/op 267.97 MB/s
BenchmarkDecodeString-2 10000 103273 ns/op 126.96 MB/s
PASS
ok encoding/base32 2.887s
BenchmarkEncodeToString-2 100000 16452 ns/op 497.93 MB/s
BenchmarkDecodeString-2 30000 49032 ns/op 222.79 MB/s
PASS
ok encoding/base64 3.786s
BenchmarkReadSlice1000Int32s-2 200000 6277 ns/op 637.19 MB/s
BenchmarkReadStruct-2 1000000 1646 ns/op 45.54 MB/s
BenchmarkReadInts-2 3000000 498 ns/op 60.17 MB/s
BenchmarkWriteInts-2 2000000 674 ns/op 44.49 MB/s
BenchmarkWriteSlice1000Int32s-2 200000 6610 ns/op 605.08 MB/s
BenchmarkPutUvarint32-2 50000000 27.9 ns/op 143.45 MB/s
BenchmarkPutUvarint64-2 20000000 74.2 ns/op 107.75 MB/s
PASS
ok encoding/binary 11.412s
BenchmarkRead-2 300000 3539 ns/op 664 B/op 18 allocs/op
BenchmarkReadWithFieldsPerRecord-2 500000 3545 ns/op 664 B/op 18 allocs/op
BenchmarkReadWithoutFieldsPerRecord-2 500000 3554 ns/op 664 B/op 18 allocs/op
BenchmarkReadLargeFields-2 20000 69512 ns/op 3936 B/op 24 allocs/op
PASS
ok encoding/csv 6.830s
BenchmarkEndToEndPipe-2 500000 2519 ns/op
BenchmarkEndToEndByteBuffer-2 1000000 1739 ns/op
BenchmarkEndToEndSliceByteBuffer-2 10000 166345 ns/op
BenchmarkEncodeComplex128Slice-2 30000 48119 ns/op
BenchmarkEncodeFloat64Slice-2 100000 20357 ns/op
BenchmarkEncodeInt32Slice-2 100000 15233 ns/op
BenchmarkEncodeStringSlice-2 100000 14772 ns/op
BenchmarkEncodeInterfaceSlice-2 3000 543728 ns/op
BenchmarkDecodeComplex128Slice-2 20000 83976 ns/op
BenchmarkDecodeFloat64Slice-2 30000 51846 ns/op
BenchmarkDecodeInt32Slice-2 30000 46808 ns/op
BenchmarkDecodeStringSlice-2 20000 88070 ns/op
BenchmarkDecodeInterfaceSlice-2 2000 711040 ns/op
PASS
ok encoding/gob 24.559s
BenchmarkEncode/256-2 3000000 451 ns/op
BenchmarkEncode/1024-2 1000000 1766 ns/op
BenchmarkEncode/4096-2 200000 7035 ns/op
BenchmarkEncode/16384-2 50000 28100 ns/op
PASS
ok encoding/hex 6.769s
BenchmarkCodeEncoder-2 100 17342298 ns/op 111.89 MB/s
BenchmarkCodeMarshal-2 100 19991162 ns/op 97.07 MB/s
BenchmarkCodeDecoder-2 20 59121805 ns/op 32.82 MB/s
BenchmarkDecoderStream-2 3000000 432 ns/op
BenchmarkCodeUnmarshal-2 20 59828043 ns/op 32.43 MB/s
BenchmarkCodeUnmarshalReuse-2 20 56667021 ns/op
BenchmarkUnmarshalString-2 2000000 667 ns/op
BenchmarkUnmarshalFloat64-2 3000000 597 ns/op
BenchmarkUnmarshalInt64-2 3000000 531 ns/op
BenchmarkIssue10335-2 2000000 766 ns/op 320 B/op 4 allocs/op
BenchmarkNumberIsValid-2 50000000 23.0 ns/op
BenchmarkNumberIsValidRegexp-2 2000000 819 ns/op
BenchmarkSkipValue-2 100 16521228 ns/op 121.18 MB/s
BenchmarkEncoderEncode-2 3000000 530 ns/op 8 B/op 1 allocs/op
PASS
ok encoding/json 26.194s
BenchmarkEncode-2 10000 112863 ns/op 580.67 MB/s
BenchmarkDecode-2 3000 564937 ns/op 157.15 MB/s
PASS
ok encoding/pem 2.901s
BenchmarkMarshal-2 100000 19703 ns/op 5776 B/op 23 allocs/op
BenchmarkUnmarshal-2 30000 53008 ns/op 8576 B/op 189 allocs/op
PASS
ok encoding/xml 4.310s
PASS
ok errors 0.003s
BenchmarkIntAdd-2 200000000 7.78 ns/op
BenchmarkIntSet-2 200000000 7.79 ns/op
BenchmarkFloatAdd-2 100000000 21.9 ns/op
BenchmarkFloatSet-2 200000000 7.77 ns/op
BenchmarkStringSet-2 10000000 125 ns/op
BenchmarkMapSet-2 10000000 211 ns/op
BenchmarkMapAddSame-2 2000000 806 ns/op
BenchmarkMapAddDifferent-2 1000000 2142 ns/op
BenchmarkRealworldExpvarUsage-2 300000 3963 ns/op
PASS
ok expvar 18.820s
PASS
ok flag 0.005s
BenchmarkSprintfPadding-2 3000000 414 ns/op
BenchmarkSprintfEmpty-2 50000000 38.8 ns/op
BenchmarkSprintfString-2 10000000 171 ns/op
BenchmarkSprintfTruncateString-2 5000000 258 ns/op
BenchmarkSprintfQuoteString-2 2000000 768 ns/op
BenchmarkSprintfInt-2 10000000 150 ns/op
BenchmarkSprintfIntInt-2 10000000 240 ns/op
BenchmarkSprintfPrefixedInt-2 10000000 232 ns/op
BenchmarkSprintfFloat-2 5000000 318 ns/op
BenchmarkSprintfComplex-2 2000000 797 ns/op
BenchmarkSprintfBoolean-2 10000000 126 ns/op
BenchmarkSprintfHexString-2 5000000 259 ns/op
BenchmarkSprintfHexBytes-2 5000000 267 ns/op
BenchmarkSprintfBytes-2 3000000 518 ns/op
BenchmarkSprintfStringer-2 3000000 486 ns/op
BenchmarkSprintfStructure-2 1000000 1565 ns/op
BenchmarkManyArgs-2 2000000 864 ns/op
BenchmarkFprintInt-2 10000000 135 ns/op
BenchmarkFprintfBytes-2 10000000 157 ns/op
BenchmarkFprintIntNoAlloc-2 20000000 99.9 ns/op
BenchmarkScanInts-2 3000 569672 ns/op
BenchmarkScanRecursiveInt-2 30 53449715 ns/op
BenchmarkScanRecursiveIntReaderWrapper-2 20 54481478 ns/op
PASS
ok fmt 43.394s
PASS
ok go/ast 0.003s
PASS
ok go/build 0.004s
PASS
ok go/constant 0.003s
PASS
ok go/doc 0.003s
PASS
ok go/format 0.003s
? go/importer [no test files]
PASS
ok go/internal/gccgoimporter 0.003s
PASS
ok go/internal/gcimporter 0.003s
BenchmarkParse-2 300 4233455 ns/op 15.04 MB/s
PASS
ok go/parser 1.707s
BenchmarkPrint-2 200 7742246 ns/op
PASS
ok go/printer 2.358s
BenchmarkScan-2 50000 30174 ns/op
BenchmarkScanFile-2 5000 372913 ns/op 47.54 MB/s
PASS
ok go/scanner 3.732s
PASS
ok go/token 0.004s
PASS
ok go/types 0.004s
? hash [no test files]
BenchmarkAdler32KB-2 3000000 545 ns/op 1877.39 MB/s
PASS
ok hash/adler32 2.199s
BenchmarkIEEECrc40B-2 30000000 57.6 ns/op 694.03 MB/s
BenchmarkIEEECrc1KB-2 20000000 94.9 ns/op 10787.87 MB/s
BenchmarkIEEECrc4KB-2 5000000 282 ns/op 14485.79 MB/s
BenchmarkIEEECrc32KB-2 1000000 2032 ns/op 16118.47 MB/s
BenchmarkCastagnoliCrc15B-2 100000000 20.0 ns/op 750.39 MB/s
BenchmarkCastagnoliCrc15BMisaligned-2 100000000 21.8 ns/op 688.89 MB/s
BenchmarkCastagnoliCrc40B-2 100000000 21.5 ns/op 1857.33 MB/s
BenchmarkCastagnoliCrc40BMisaligned-2 50000000 25.4 ns/op 1573.85 MB/s
BenchmarkCastagnoliCrc512-2 30000000 52.5 ns/op 9751.63 MB/s
BenchmarkCastagnoliCrc512Misaligned-2 30000000 55.3 ns/op 9266.82 MB/s
BenchmarkCastagnoliCrc1KB-2 20000000 87.7 ns/op 11674.95 MB/s
BenchmarkCastagnoliCrc1KBMisaligned-2 20000000 93.1 ns/op 11004.73 MB/s
BenchmarkCastagnoliCrc4KB-2 10000000 228 ns/op 17906.70 MB/s
BenchmarkCastagnoliCrc4KBMisaligned-2 10000000 232 ns/op 17582.41 MB/s
BenchmarkCastagnoliCrc32KB-2 1000000 1733 ns/op 18899.72 MB/s
BenchmarkCastagnoliCrc32KBMisaligned-2 1000000 1741 ns/op 18817.23 MB/s
PASS
ok hash/crc32 30.984s
BenchmarkCrc64/ISO64KB-2 30000 46994 ns/op 1394.55 MB/s
BenchmarkCrc64/ISO4KB-2 500000 2995 ns/op 1367.26 MB/s
BenchmarkCrc64/ISO1KB-2 2000000 769 ns/op 1330.61 MB/s
BenchmarkCrc64/ECMA64KB-2 30000 46875 ns/op 1398.10 MB/s
BenchmarkCrc64/Random64KB-2 30000 53818 ns/op 1217.72 MB/s
BenchmarkCrc64/Random16KB-2 30000 49777 ns/op 329.15 MB/s
PASS
ok hash/crc64 11.770s
BenchmarkFnv32KB-2 1000000 1541 ns/op 664.32 MB/s
BenchmarkFnv32aKB-2 1000000 1537 ns/op 665.99 MB/s
BenchmarkFnv64KB-2 1000000 1551 ns/op 660.09 MB/s
BenchmarkFnv64aKB-2 1000000 1547 ns/op 661.67 MB/s
PASS
ok hash/fnv 6.248s
BenchmarkEscape-2 100000 21172 ns/op
BenchmarkEscapeNone-2 300000 5550 ns/op
BenchmarkUnescape-2 50000 24193 ns/op
BenchmarkUnescapeNone-2 20000000 110 ns/op
BenchmarkUnescapeSparse-2 500000 2861 ns/op
BenchmarkUnescapeDense-2 100000 18035 ns/op
PASS
ok html 11.288s
BenchmarkCSSEscaper-2 1000000 2164 ns/op
BenchmarkCSSEscaperNoSpecials-2 3000000 428 ns/op
BenchmarkDecodeCSS-2 2000000 632 ns/op
BenchmarkDecodeCSSNoSpecials-2 200000000 8.29 ns/op
BenchmarkCSSValueFilter-2 5000000 274 ns/op
BenchmarkCSSValueFilterOk-2 3000000 432 ns/op
BenchmarkEscapedExecute-2 300000 3599 ns/op
BenchmarkHTMLNospaceEscaper-2 1000000 2214 ns/op
BenchmarkHTMLNospaceEscaperNoSpecials-2 3000000 506 ns/op
BenchmarkStripTags-2 1000000 1554 ns/op
BenchmarkStripTagsNoSpecials-2 10000000 165 ns/op
BenchmarkJSValEscaperWithNum-2 2000000 929 ns/op
BenchmarkJSValEscaperWithStr-2 500000 3287 ns/op
BenchmarkJSValEscaperWithStrNoSpecials-2 1000000 1065 ns/op
BenchmarkJSValEscaperWithObj-2 500000 3666 ns/op
BenchmarkJSValEscaperWithObjNoSpecials-2 1000000 1426 ns/op
BenchmarkJSStrEscaperNoSpecials-2 3000000 444 ns/op
BenchmarkJSStrEscaper-2 1000000 2049 ns/op
BenchmarkJSRegexpEscaperNoSpecials-2 3000000 502 ns/op
BenchmarkJSRegexpEscaper-2 1000000 2158 ns/op
BenchmarkTemplateSpecialTags-2 5000 321307 ns/op
BenchmarkURLEscaper-2 500000 3207 ns/op
BenchmarkURLEscaperNoSpecials-2 5000000 265 ns/op
BenchmarkURLNormalizer-2 1000000 2228 ns/op
BenchmarkURLNormalizerNoSpecials-2 5000000 299 ns/op
PASS
ok html/template 46.366s
PASS
ok image 0.008s
BenchmarkYCbCrToRGB/0-2 300000000 6.00 ns/op
BenchmarkYCbCrToRGB/128-2 300000000 5.55 ns/op
BenchmarkYCbCrToRGB/255-2 300000000 6.00 ns/op
BenchmarkRGBToYCbCr/0-2 200000000 6.26 ns/op
BenchmarkRGBToYCbCr/Cb-2 200000000 6.20 ns/op
BenchmarkRGBToYCbCr/Cr-2 200000000 6.39 ns/op
BenchmarkYCbCrToRGBA/0-2 200000000 6.68 ns/op
BenchmarkYCbCrToRGBA/128-2 200000000 6.18 ns/op
BenchmarkYCbCrToRGBA/255-2 200000000 6.63 ns/op
BenchmarkNYCbCrAToRGBA/0-2 200000000 8.23 ns/op
BenchmarkNYCbCrAToRGBA/128-2 200000000 7.56 ns/op
BenchmarkNYCbCrAToRGBA/255-2 200000000 8.26 ns/op
PASS
ok image/color 25.859s
? image/color/palette [no test files]
BenchmarkFillOver-2 1000 1190794 ns/op
BenchmarkFillSrc-2 50000 28730 ns/op
BenchmarkCopyOver-2 2000 912679 ns/op
BenchmarkCopySrc-2 50000 30357 ns/op
BenchmarkNRGBAOver-2 1000 1233231 ns/op
BenchmarkNRGBASrc-2 2000 624403 ns/op
BenchmarkYCbCr-2 2000 772549 ns/op
BenchmarkGray-2 10000 234383 ns/op
BenchmarkCMYK-2 2000 729928 ns/op
BenchmarkGlyphOver-2 3000 435719 ns/op
BenchmarkRGBA-2 200 6567335 ns/op
BenchmarkPaletted-2 200 7128596 ns/op
BenchmarkGenericOver-2 100 19148415 ns/op
BenchmarkGenericMaskOver-2 200 9941599 ns/op
BenchmarkGenericSrc-2 200 8372319 ns/op
BenchmarkGenericMaskSrc-2 100 16105194 ns/op
PASS
ok image/draw 29.780s
BenchmarkEncode-2 200 7988419 ns/op 153.82 MB/s
BenchmarkQuantizedEncode-2 2 754270873 ns/op 1.63 MB/s
PASS
ok image/gif 7.218s
? image/internal/imageutil [no test files]
BenchmarkFDCT-2 1000000 1798 ns/op
BenchmarkIDCT-2 1000000 1897 ns/op
BenchmarkDecodeBaseline-2 1000 1424553 ns/op 43.38 MB/s
BenchmarkDecodeProgressive-2 1000 2284747 ns/op 27.05 MB/s
BenchmarkEncode-2 50 26098208 ns/op 47.08 MB/s
PASS
ok image/jpeg 13.190s
BenchmarkPaeth-2 300000000 4.44 ns/op
BenchmarkDecodeGray-2 2000 820283 ns/op 79.89 MB/s
BenchmarkDecodeNRGBAGradient-2 500 3226348 ns/op 81.25 MB/s
BenchmarkDecodeNRGBAOpaque-2 500 2619791 ns/op 100.06 MB/s
BenchmarkDecodePaletted-2 3000 556328 ns/op 117.80 MB/s
BenchmarkDecodeRGB-2 500 2406492 ns/op 108.93 MB/s
BenchmarkDecodeInterlacing-2 500 3100434 ns/op 84.55 MB/s
BenchmarkEncodeGray-2 500 2656284 ns/op 115.65 MB/s
BenchmarkEncodeNRGBOpaque-2 200 7963843 ns/op 154.30 MB/s
BenchmarkEncodeNRGBA-2 200 8812876 ns/op 139.43 MB/s
BenchmarkEncodePaletted-2 1000 1994976 ns/op 153.99 MB/s
BenchmarkEncodeRGBOpaque-2 200 7903473 ns/op 155.48 MB/s
BenchmarkEncodeRGBA-2 50 32342752 ns/op 37.99 MB/s
PASS
ok image/png 25.021s
BenchmarkNewIndexRandom-2 3 337799769 ns/op
BenchmarkNewIndexRepeat-2 3 490788488 ns/op
BenchmarkSaveRestore-2 100 17488231 ns/op 239.00 MB/s
PASS
ok index/suffixarray 7.792s
? internal/nettrace [no test files]
PASS
ok internal/pprof/profile 0.003s
? internal/race [no test files]
PASS
ok internal/singleflight 0.003s
? internal/syscall/unix [no test files]
? internal/syscall/windows [no test files]
? internal/syscall/windows/registry [no test files]
? internal/syscall/windows/sysdll [no test files]
? internal/testenv [no test files]
PASS
ok internal/trace 0.003s
PASS
ok io 0.003s
PASS
ok io/ioutil 0.003s
BenchmarkItoa-2 20000000 92.1 ns/op
BenchmarkPrintln-2 3000000 509 ns/op
PASS
ok log 3.986s
PASS
ok log/syslog 0.004s
BenchmarkAcos-2 100000000 20.8 ns/op
BenchmarkAcosh-2 50000000 29.8 ns/op
BenchmarkAsin-2 100000000 16.8 ns/op
BenchmarkAsinh-2 50000000 38.9 ns/op
BenchmarkAtan-2 100000000 10.3 ns/op
BenchmarkAtanh-2 50000000 32.9 ns/op
BenchmarkAtan2-2 100000000 19.8 ns/op
BenchmarkCbrt-2 100000000 20.4 ns/op
BenchmarkCeil-2 1000000000 2.10 ns/op
BenchmarkCopysign-2 2000000000 1.61 ns/op
BenchmarkCos-2 100000000 13.9 ns/op
BenchmarkCosh-2 50000000 39.6 ns/op
BenchmarkErf-2 100000000 10.6 ns/op
BenchmarkErfc-2 100000000 12.4 ns/op
BenchmarkExp-2 100000000 17.2 ns/op
BenchmarkExpGo-2 50000000 34.5 ns/op
BenchmarkExpm1-2 100000000 18.4 ns/op
BenchmarkExp2-2 50000000 31.5 ns/op
BenchmarkExp2Go-2 50000000 31.9 ns/op
BenchmarkAbs-2 2000000000 1.38 ns/op
BenchmarkDim-2 500000000 3.83 ns/op
BenchmarkFloor-2 1000000000 2.11 ns/op
BenchmarkMax-2 500000000 3.53 ns/op
BenchmarkMin-2 300000000 3.88 ns/op
BenchmarkMod-2 30000000 52.8 ns/op
BenchmarkFrexp-2 200000000 7.02 ns/op
BenchmarkGamma-2 100000000 19.4 ns/op
BenchmarkHypot-2 300000000 4.74 ns/op
BenchmarkHypotGo-2 200000000 7.74 ns/op
BenchmarkIlogb-2 200000000 6.32 ns/op
BenchmarkJ0-2 20000000 82.3 ns/op
BenchmarkJ1-2 20000000 81.5 ns/op
BenchmarkJn-2 10000000 171 ns/op
BenchmarkLdexp-2 100000000 10.3 ns/op
BenchmarkLgamma-2 100000000 18.9 ns/op
BenchmarkLog-2 100000000 14.6 ns/op
BenchmarkLogb-2 300000000 5.73 ns/op
BenchmarkLog1p-2 100000000 21.3 ns/op
BenchmarkLog10-2 100000000 17.2 ns/op
BenchmarkLog2-2 200000000 9.68 ns/op
BenchmarkModf-2 300000000 5.35 ns/op
BenchmarkNextafter32-2 300000000 5.26 ns/op
BenchmarkNextafter64-2 300000000 4.93 ns/op
BenchmarkPowInt-2 50000000 37.2 ns/op
BenchmarkPowFrac-2 20000000 115 ns/op
BenchmarkPow10Pos-2 30000000 44.3 ns/op
BenchmarkPow10Neg-2 30000000 54.9 ns/op
BenchmarkRemainder-2 30000000 42.1 ns/op
BenchmarkSignbit-2 2000000000 0.76 ns/op
BenchmarkSin-2 100000000 13.2 ns/op
BenchmarkSincos-2 100000000 22.8 ns/op
BenchmarkSinh-2 30000000 40.9 ns/op
BenchmarkSqrtIndirect-2 500000000 3.46 ns/op
BenchmarkSqrtLatency-2 300000000 4.92 ns/op
BenchmarkSqrtIndirectLatency-2 200000000 8.70 ns/op
BenchmarkSqrtGoLatency-2 20000000 74.0 ns/op
BenchmarkSqrtPrime-2 500000 3646 ns/op
BenchmarkTan-2 100000000 14.6 ns/op
BenchmarkTanh-2 50000000 26.5 ns/op
BenchmarkTrunc-2 500000000 3.04 ns/op
BenchmarkY0-2 20000000 80.8 ns/op
BenchmarkY1-2 20000000 80.2 ns/op
BenchmarkYn-2 10000000 166 ns/op
PASS
ok math 117.584s
BenchmarkAddVV/1-2 300000000 5.86 ns/op 10925.83 MB/s
BenchmarkAddVV/2-2 200000000 6.42 ns/op 19937.62 MB/s
BenchmarkAddVV/3-2 200000000 7.96 ns/op 24125.82 MB/s
BenchmarkAddVV/4-2 200000000 8.87 ns/op 28855.33 MB/s
BenchmarkAddVV/5-2 100000000 10.4 ns/op 30858.31 MB/s
BenchmarkAddVV/10-2 100000000 15.8 ns/op 40469.83 MB/s
BenchmarkAddVV/100-2 20000000 64.0 ns/op 100069.39 MB/s
BenchmarkAddVV/1000-2 3000000 582 ns/op 109947.70 MB/s
BenchmarkAddVV/10000-2 200000 7172 ns/op 89225.76 MB/s
BenchmarkAddVV/100000-2 10000 100258 ns/op 63834.81 MB/s
BenchmarkAddVW/1-2 300000000 4.91 ns/op 1628.10 MB/s
BenchmarkAddVW/2-2 300000000 5.21 ns/op 3073.39 MB/s
BenchmarkAddVW/3-2 300000000 5.58 ns/op 4300.86 MB/s
BenchmarkAddVW/4-2 200000000 6.12 ns/op 5226.24 MB/s
BenchmarkAddVW/5-2 200000000 8.11 ns/op 4934.50 MB/s
BenchmarkAddVW/10-2 100000000 10.4 ns/op 7676.15 MB/s
BenchmarkAddVW/100-2 30000000 58.5 ns/op 13669.82 MB/s
BenchmarkAddVW/1000-2 3000000 574 ns/op 13914.94 MB/s
BenchmarkAddVW/10000-2 300000 5695 ns/op 14046.64 MB/s
BenchmarkAddVW/100000-2 20000 72876 ns/op 10977.52 MB/s
BenchmarkAddMulVVW/1-2 300000000 5.17 ns/op 12370.77 MB/s
BenchmarkAddMulVVW/2-2 300000000 5.97 ns/op 21450.80 MB/s
BenchmarkAddMulVVW/3-2 200000000 7.84 ns/op 24482.18 MB/s
BenchmarkAddMulVVW/4-2 200000000 9.03 ns/op 28336.03 MB/s
BenchmarkAddMulVVW/5-2 100000000 10.3 ns/op 31109.01 MB/s
BenchmarkAddMulVVW/10-2 100000000 16.5 ns/op 38853.82 MB/s
BenchmarkAddMulVVW/100-2 20000000 112 ns/op 57025.54 MB/s
BenchmarkAddMulVVW/1000-2 1000000 1078 ns/op 59355.38 MB/s
BenchmarkAddMulVVW/10000-2 200000 11047 ns/op 57930.18 MB/s
BenchmarkAddMulVVW/100000-2 10000 114538 ns/op 55876.52 MB/s
BenchmarkBitLen/0-2 1000000000 2.28 ns/op
BenchmarkBitLen/1-2 1000000000 2.09 ns/op
BenchmarkBitLen/2-2 1000000000 2.09 ns/op
BenchmarkBitLen/3-2 1000000000 2.09 ns/op
BenchmarkBitLen/4-2 1000000000 2.08 ns/op
BenchmarkBitLen/5-2 1000000000 2.08 ns/op
BenchmarkBitLen/8-2 1000000000 2.08 ns/op
BenchmarkBitLen/9-2 1000000000 2.09 ns/op
BenchmarkBitLen/16-2 1000000000 2.09 ns/op
BenchmarkBitLen/17-2 1000000000 2.10 ns/op
BenchmarkBitLen/31-2 1000000000 2.10 ns/op
BenchmarkDecimalConversion-2 10000 141756 ns/op
BenchmarkFloatString/100-2 1000000 1298 ns/op 400 B/op 8 allocs/op
BenchmarkFloatString/1000-2 50000 38569 ns/op 3216 B/op 10 allocs/op
BenchmarkFloatString/10000-2 500 3166461 ns/op 55530 B/op 42 allocs/op
BenchmarkFloatString/100000-2 5 304508576 ns/op 624596 B/op 345 allocs/op
BenchmarkFloatAdd/10-2 20000000 84.7 ns/op 0 B/op 0 allocs/op
BenchmarkFloatAdd/100-2 20000000 88.0 ns/op 0 B/op 0 allocs/op
BenchmarkFloatAdd/1000-2 10000000 125 ns/op 0 B/op 0 allocs/op
BenchmarkFloatAdd/10000-2 3000000 455 ns/op 0 B/op 0 allocs/op
BenchmarkFloatAdd/100000-2 500000 3634 ns/op 0 B/op 0 allocs/op
BenchmarkFloatSub/10-2 20000000 77.5 ns/op 0 B/op 0 allocs/op
BenchmarkFloatSub/100-2 20000000 79.0 ns/op 0 B/op 0 allocs/op
BenchmarkFloatSub/1000-2 20000000 100 ns/op 0 B/op 0 allocs/op
BenchmarkFloatSub/10000-2 5000000 293 ns/op 0 B/op 0 allocs/op
BenchmarkFloatSub/100000-2 1000000 2223 ns/op 0 B/op 0 allocs/op
BenchmarkParseFloatSmallExp-2 100000 12467 ns/op
BenchmarkParseFloatLargeExp-2 30000 46250 ns/op
BenchmarkGCD10x10/WithoutXY-2 2000000 939 ns/op
BenchmarkGCD10x10/WithXY-2 1000000 1270 ns/op
BenchmarkGCD10x100/WithoutXY-2 1000000 1045 ns/op
BenchmarkGCD10x100/WithXY-2 1000000 1610 ns/op
BenchmarkGCD10x1000/WithoutXY-2 1000000 1607 ns/op
BenchmarkGCD10x1000/WithXY-2 500000 3217 ns/op
BenchmarkGCD10x10000/WithoutXY-2 200000 6660 ns/op
BenchmarkGCD10x10000/WithXY-2 200000 11110 ns/op
BenchmarkGCD10x100000/WithoutXY-2 30000 58553 ns/op
BenchmarkGCD10x100000/WithXY-2 20000 108441 ns/op
BenchmarkGCD100x100/WithoutXY-2 300000 5467 ns/op
BenchmarkGCD100x100/WithXY-2 100000 15434 ns/op
BenchmarkGCD100x1000/WithoutXY-2 200000 6331 ns/op
BenchmarkGCD100x1000/WithXY-2 100000 17580 ns/op
BenchmarkGCD100x10000/WithoutXY-2 100000 16136 ns/op
BenchmarkGCD100x10000/WithXY-2 30000 48902 ns/op
BenchmarkGCD100x100000/WithoutXY-2 10000 107368 ns/op
BenchmarkGCD100x100000/WithXY-2 5000 329094 ns/op
BenchmarkGCD1000x1000/WithoutXY-2 20000 66765 ns/op
BenchmarkGCD1000x1000/WithXY-2 5000 256100 ns/op
BenchmarkGCD1000x10000/WithoutXY-2 20000 80611 ns/op
BenchmarkGCD1000x10000/WithXY-2 5000 396140 ns/op
BenchmarkGCD1000x100000/WithoutXY-2 10000 205148 ns/op
BenchmarkGCD1000x100000/WithXY-2 1000 2264024 ns/op
BenchmarkGCD10000x10000/WithoutXY-2 1000 1890542 ns/op
BenchmarkGCD10000x10000/WithXY-2 300 5855006 ns/op
BenchmarkGCD10000x100000/WithoutXY-2 1000 2330260 ns/op
BenchmarkGCD10000x100000/WithXY-2 50 26000623 ns/op
BenchmarkGCD100000x100000/WithoutXY-2 10 138141491 ns/op
BenchmarkGCD100000x100000/WithXY-2 3 405870938 ns/op
BenchmarkHilbert-2 1000 2311975 ns/op
BenchmarkBinomial-2 1000000 2195 ns/op
BenchmarkQuoRem-2 500000 2826 ns/op
BenchmarkExp-2 200 7937699 ns/op
BenchmarkExp2-2 200 7944898 ns/op
BenchmarkBitset-2 100000000 18.8 ns/op
BenchmarkBitsetNeg-2 20000000 65.6 ns/op
BenchmarkBitsetOrig-2 10000000 177 ns/op
BenchmarkBitsetNegOrig-2 5000000 288 ns/op
BenchmarkModSqrt225_Tonelli-2 3000 591558 ns/op
BenchmarkModSqrt224_3Mod4-2 10000 181644 ns/op
BenchmarkModSqrt5430_Tonelli-2 1 2835793987 ns/op
BenchmarkModSqrt5430_3Mod4-2 2 947904638 ns/op
BenchmarkSqrt-2 50000 38351 ns/op
BenchmarkMul-2 100 15695529 ns/op
BenchmarkExp3Power/0x10-2 5000000 302 ns/op
BenchmarkExp3Power/0x40-2 5000000 355 ns/op
BenchmarkExp3Power/0x100-2 3000000 542 ns/op
BenchmarkExp3Power/0x400-2 1000000 1206 ns/op
BenchmarkExp3Power/0x1000-2 200000 6606 ns/op
BenchmarkExp3Power/0x4000-2 30000 52325 ns/op
BenchmarkExp3Power/0x10000-2 3000 451650 ns/op
BenchmarkExp3Power/0x40000-2 300 4229121 ns/op
BenchmarkExp3Power/0x100000-2 50 38453832 ns/op
BenchmarkExp3Power/0x400000-2 3 344893557 ns/op
BenchmarkFibo-2 50 34936108 ns/op
BenchmarkScanPi-2 10000 132347 ns/op
BenchmarkStringPiParallel-2 10000 135605 ns/op