Skip to content

Commit abf7548

Browse files
committed
re-run all benchmarks (go1.19 on intel mac (i7-6920HQ) macOS Monterey)
1 parent 0c4eaf9 commit abf7548

File tree

1 file changed

+74
-73
lines changed

1 file changed

+74
-73
lines changed

README.md

+74-73
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ If you\'re interested in new programming languages, you should definitely take a
4141

4242
## Benchmark Results
4343

44-
Golang Version: go version go1.18.3 darwin/amd64
44+
Golang Version: [go version go1.19](https://tip.golang.org/doc/go1.19) [darwin/amd64](https://go.dev/dl/go1.19.darwin-amd64.pkg)
45+
Hardware Spec: [Apple MacBook Pro 15-Inch "Core i7" 2.9 Touch/Late 2016](https://support.apple.com/kb/SP749) [(?)](https://everymac.com/systems/apple/macbook_pro/specs/macbook-pro-core-i7-2.9-15-late-2016-retina-display-touch-bar-specs.html)
4546

4647
### base64
4748

@@ -93,10 +94,10 @@ $ go test -bench . -benchmem
9394
goos: darwin
9495
goarch: amd64
9596
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
96-
BenchmarkBase64decode-8 9880711 120.8 ns/op 32 B/op 2 allocs/op
97-
BenchmarkBase64regex-8 56228 20712 ns/op 21414 B/op 198 allocs/op
97+
BenchmarkBase64decode-8 10401175 116.1 ns/op 32 B/op 2 allocs/op
98+
BenchmarkBase64regex-8 54302 21782 ns/op 21432 B/op 198 allocs/op
9899
PASS
99-
ok _/Users/simonwaldherr/git/golang-benchmarks/base64 2.939s
100+
ok _/Users/simonwaldherr/git/golang-benchmarks/base64 3.903s
100101
```
101102

102103
### between
@@ -189,12 +190,12 @@ $ go test -bench . -benchmem
189190
goos: darwin
190191
goarch: amd64
191192
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
192-
BenchmarkNumberRegEx-8 84063 14255 ns/op 16131 B/op 142 allocs/op
193-
BenchmarkFulltextRegEx-8 103522 11823 ns/op 11637 B/op 104 allocs/op
194-
BenchmarkNumberParse-8 19150884 61.39 ns/op 0 B/op 0 allocs/op
195-
BenchmarkFulltextParse-8 1304774 910.5 ns/op 32 B/op 2 allocs/op
193+
BenchmarkNumberRegEx-8 76204 15952 ns/op 16158 B/op 142 allocs/op
194+
BenchmarkFulltextRegEx-8 100641 11678 ns/op 11644 B/op 104 allocs/op
195+
BenchmarkNumberParse-8 19809344 65.44 ns/op 0 B/op 0 allocs/op
196+
BenchmarkFulltextParse-8 1228257 890.6 ns/op 32 B/op 2 allocs/op
196197
PASS
197-
ok _/Users/simonwaldherr/git/golang-benchmarks/between 7.214s
198+
ok _/Users/simonwaldherr/git/golang-benchmarks/between 6.284s
198199
```
199200

200201
### caseinsensitivecompare
@@ -237,11 +238,11 @@ $ go test -bench . -benchmem
237238
goos: darwin
238239
goarch: amd64
239240
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
240-
BenchmarkEqualFold-8 27800450 42.18 ns/op 0 B/op 0 allocs/op
241-
BenchmarkToUpper-8 10188032 114.5 ns/op 16 B/op 3 allocs/op
242-
BenchmarkToLower-8 7288396 162.0 ns/op 20 B/op 5 allocs/op
241+
BenchmarkEqualFold-8 23906280 44.98 ns/op 0 B/op 0 allocs/op
242+
BenchmarkToUpper-8 8860275 130.7 ns/op 16 B/op 3 allocs/op
243+
BenchmarkToLower-8 5684440 176.2 ns/op 20 B/op 5 allocs/op
243244
PASS
244-
ok _/Users/simonwaldherr/git/golang-benchmarks/caseinsensitivecompare 4.977s
245+
ok _/Users/simonwaldherr/git/golang-benchmarks/caseinsensitivecompare 4.052s
245246
```
246247

247248
### concat
@@ -288,11 +289,11 @@ $ go test -bench . -benchmem
288289
goos: darwin
289290
goarch: amd64
290291
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
291-
BenchmarkConcatString-8 1000000 65492 ns/op 503994 B/op 1 allocs/op
292-
BenchmarkConcatBuffer-8 202685414 5.801 ns/op 2 B/op 0 allocs/op
293-
BenchmarkConcatBuilder-8 536785478 3.847 ns/op 5 B/op 0 allocs/op
292+
BenchmarkConcatString-8 785359 46756 ns/op 396648 B/op 1 allocs/op
293+
BenchmarkConcatBuffer-8 198819010 6.233 ns/op 2 B/op 0 allocs/op
294+
BenchmarkConcatBuilder-8 556863627 3.479 ns/op 5 B/op 0 allocs/op
294295
PASS
295-
ok _/Users/simonwaldherr/git/golang-benchmarks/concat 69.888s
296+
ok _/Users/simonwaldherr/git/golang-benchmarks/concat 41.061s
296297
```
297298

298299
### contains
@@ -443,16 +444,16 @@ $ go test -bench . -benchmem
443444
goos: darwin
444445
goarch: amd64
445446
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
446-
BenchmarkContains-8 128363952 9.664 ns/op 0 B/op 0 allocs/op
447-
BenchmarkContainsNot-8 139273438 8.510 ns/op 0 B/op 0 allocs/op
448-
BenchmarkContainsBytes-8 100000000 10.48 ns/op 0 B/op 0 allocs/op
449-
BenchmarkContainsBytesNot-8 123996085 9.466 ns/op 0 B/op 0 allocs/op
450-
BenchmarkCompileMatch-8 13923272 85.75 ns/op 0 B/op 0 allocs/op
451-
BenchmarkCompileMatchNot-8 26818137 46.21 ns/op 0 B/op 0 allocs/op
452-
BenchmarkMatch-8 712200 1517 ns/op 1378 B/op 17 allocs/op
453-
BenchmarkMatchNot-8 813151 1447 ns/op 1378 B/op 17 allocs/op
447+
BenchmarkContains-8 130316257 9.182 ns/op 0 B/op 0 allocs/op
448+
BenchmarkContainsNot-8 130648908 8.822 ns/op 0 B/op 0 allocs/op
449+
BenchmarkContainsBytes-8 100000000 11.46 ns/op 0 B/op 0 allocs/op
450+
BenchmarkContainsBytesNot-8 100000000 10.42 ns/op 0 B/op 0 allocs/op
451+
BenchmarkCompileMatch-8 11832326 91.56 ns/op 0 B/op 0 allocs/op
452+
BenchmarkCompileMatchNot-8 25454852 46.12 ns/op 0 B/op 0 allocs/op
453+
BenchmarkMatch-8 730293 1534 ns/op 1378 B/op 17 allocs/op
454+
BenchmarkMatchNot-8 804210 1495 ns/op 1379 B/op 17 allocs/op
454455
PASS
455-
ok _/Users/simonwaldherr/git/golang-benchmarks/contains 12.560s
456+
ok _/Users/simonwaldherr/git/golang-benchmarks/contains 11.367s
456457
```
457458

458459
### foreach
@@ -540,12 +541,12 @@ $ go test -bench . -benchmem
540541
goos: darwin
541542
goarch: amd64
542543
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
543-
BenchmarkForMap-8 47968023 23.96 ns/op 0 B/op 0 allocs/op
544-
BenchmarkRangeMap-8 18949450 65.61 ns/op 0 B/op 0 allocs/op
545-
BenchmarkRangeSlice-8 434911364 3.020 ns/op 0 B/op 0 allocs/op
546-
BenchmarkRangeSliceKey-8 233581754 4.786 ns/op 0 B/op 0 allocs/op
544+
BenchmarkForMap-8 44069643 25.90 ns/op 0 B/op 0 allocs/op
545+
BenchmarkRangeMap-8 17750170 70.06 ns/op 0 B/op 0 allocs/op
546+
BenchmarkRangeSlice-8 439094810 2.932 ns/op 0 B/op 0 allocs/op
547+
BenchmarkRangeSliceKey-8 253304976 4.650 ns/op 0 B/op 0 allocs/op
547548
PASS
548-
ok _/Users/simonwaldherr/git/golang-benchmarks/foreach 6.873s
549+
ok _/Users/simonwaldherr/git/golang-benchmarks/foreach 6.877s
549550
```
550551

551552
### hash
@@ -656,22 +657,22 @@ $ go test -bench . -benchmem
656657
goos: darwin
657658
goarch: amd64
658659
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
659-
BenchmarkAdler32-8 1287938 922.9 ns/op 8 B/op 1 allocs/op
660-
BenchmarkBlake2b256-8 513374 2556 ns/op 32 B/op 1 allocs/op
661-
BenchmarkBlake2b512-8 504631 2475 ns/op 64 B/op 1 allocs/op
662-
BenchmarkBlake3256-8 412959 3102 ns/op 64 B/op 2 allocs/op
663-
BenchmarkMMH3-8 2619530 455.4 ns/op 16 B/op 1 allocs/op
664-
BenchmarkCRC32-8 8407893 144.2 ns/op 8 B/op 1 allocs/op
665-
BenchmarkFnv128-8 238423 5238 ns/op 16 B/op 1 allocs/op
666-
BenchmarkMD5-8 380708 3201 ns/op 16 B/op 1 allocs/op
667-
BenchmarkSHA1-8 481208 2447 ns/op 24 B/op 1 allocs/op
668-
BenchmarkSHA256-8 215299 5748 ns/op 32 B/op 1 allocs/op
669-
BenchmarkSHA512-8 245330 4206 ns/op 64 B/op 1 allocs/op
670-
BenchmarkSHA3256-8 159240 7251 ns/op 512 B/op 3 allocs/op
671-
BenchmarkSHA3512-8 95620 12679 ns/op 576 B/op 3 allocs/op
672-
BenchmarkWhirlpool-8 22088 56059 ns/op 64 B/op 1 allocs/op
660+
BenchmarkAdler32-8 1385911 880.3 ns/op 8 B/op 1 allocs/op
661+
BenchmarkBlake2b256-8 519589 2454 ns/op 32 B/op 1 allocs/op
662+
BenchmarkBlake2b512-8 514566 2384 ns/op 64 B/op 1 allocs/op
663+
BenchmarkBlake3256-8 398064 3273 ns/op 64 B/op 2 allocs/op
664+
BenchmarkMMH3-8 2423289 501.5 ns/op 16 B/op 1 allocs/op
665+
BenchmarkCRC32-8 8147672 145.6 ns/op 8 B/op 1 allocs/op
666+
BenchmarkFnv128-8 240018 5284 ns/op 16 B/op 1 allocs/op
667+
BenchmarkMD5-8 374863 3186 ns/op 16 B/op 1 allocs/op
668+
BenchmarkSHA1-8 399988 2592 ns/op 24 B/op 1 allocs/op
669+
BenchmarkSHA256-8 192133 6062 ns/op 32 B/op 1 allocs/op
670+
BenchmarkSHA512-8 268538 3899 ns/op 64 B/op 1 allocs/op
671+
BenchmarkSHA3256-8 138606 7746 ns/op 512 B/op 3 allocs/op
672+
BenchmarkSHA3512-8 83500 14025 ns/op 576 B/op 3 allocs/op
673+
BenchmarkWhirlpool-8 22570 53460 ns/op 64 B/op 1 allocs/op
673674
PASS
674-
ok _/Users/simonwaldherr/git/golang-benchmarks/hash 19.754s
675+
ok _/Users/simonwaldherr/git/golang-benchmarks/hash 19.378s
675676
```
676677

677678
### index
@@ -755,10 +756,10 @@ $ go test -bench . -benchmem
755756
goos: darwin
756757
goarch: amd64
757758
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
758-
BenchmarkMapStringKeys-8 8003790 127.8 ns/op 0 B/op 0 allocs/op
759-
BenchmarkMapIntKeys-8 16456246 77.34 ns/op 0 B/op 0 allocs/op
759+
BenchmarkMapStringKeys-8 10477886 120.7 ns/op 0 B/op 0 allocs/op
760+
BenchmarkMapIntKeys-8 17024200 70.90 ns/op 0 B/op 0 allocs/op
760761
PASS
761-
ok _/Users/simonwaldherr/git/golang-benchmarks/index 4.164s
762+
ok _/Users/simonwaldherr/git/golang-benchmarks/index 4.199s
762763
```
763764

764765
### json
@@ -850,10 +851,10 @@ $ go test -bench . -benchmem
850851
goos: darwin
851852
goarch: amd64
852853
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
853-
BenchmarkJsonMarshal-8 703828 1723 ns/op 480 B/op 5 allocs/op
854-
BenchmarkJsonUnmarshal-8 169846 7004 ns/op 2136 B/op 39 allocs/op
854+
BenchmarkJsonMarshal-8 721548 1674 ns/op 480 B/op 5 allocs/op
855+
BenchmarkJsonUnmarshal-8 165844 7086 ns/op 2136 B/op 39 allocs/op
855856
PASS
856-
ok _/Users/simonwaldherr/git/golang-benchmarks/json 3.527s
857+
ok _/Users/simonwaldherr/git/golang-benchmarks/json 3.511s
857858
```
858859

859860
### math
@@ -937,16 +938,16 @@ $ go test -bench . -benchmem
937938
goos: darwin
938939
goarch: amd64
939940
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
940-
BenchmarkMathInt8-8 1000000000 0.3281 ns/op 0 B/op 0 allocs/op
941-
BenchmarkMathInt32-8 1000000000 0.2946 ns/op 0 B/op 0 allocs/op
942-
BenchmarkMathInt64-8 1000000000 0.2910 ns/op 0 B/op 0 allocs/op
943-
BenchmarkMathAtomicInt32-8 231644724 5.172 ns/op 0 B/op 0 allocs/op
944-
BenchmarkMathAtomicInt64-8 234732374 5.166 ns/op 0 B/op 0 allocs/op
945-
BenchmarkMathMutexInt-8 82147370 14.73 ns/op 0 B/op 0 allocs/op
946-
BenchmarkMathFloat32-8 1000000000 0.2978 ns/op 0 B/op 0 allocs/op
947-
BenchmarkMathFloat64-8 1000000000 0.2995 ns/op 0 B/op 0 allocs/op
941+
BenchmarkMathInt8-8 1000000000 0.2955 ns/op 0 B/op 0 allocs/op
942+
BenchmarkMathInt32-8 1000000000 0.2909 ns/op 0 B/op 0 allocs/op
943+
BenchmarkMathInt64-8 1000000000 0.2900 ns/op 0 B/op 0 allocs/op
944+
BenchmarkMathAtomicInt32-8 223189812 5.344 ns/op 0 B/op 0 allocs/op
945+
BenchmarkMathAtomicInt64-8 223521709 5.240 ns/op 0 B/op 0 allocs/op
946+
BenchmarkMathMutexInt-8 81841459 14.90 ns/op 0 B/op 0 allocs/op
947+
BenchmarkMathFloat32-8 1000000000 0.2971 ns/op 0 B/op 0 allocs/op
948+
BenchmarkMathFloat64-8 1000000000 0.2939 ns/op 0 B/op 0 allocs/op
948949
PASS
949-
ok _/Users/simonwaldherr/git/golang-benchmarks/math 6.532s
950+
ok _/Users/simonwaldherr/git/golang-benchmarks/math 6.488s
950951
```
951952

952953
### parse
@@ -993,11 +994,11 @@ $ go test -bench . -benchmem
993994
goos: darwin
994995
goarch: amd64
995996
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
996-
BenchmarkParseBool-8 1000000000 0.5828 ns/op 0 B/op 0 allocs/op
997-
BenchmarkParseInt-8 79467672 15.18 ns/op 0 B/op 0 allocs/op
998-
BenchmarkParseFloat-8 14133048 81.11 ns/op 0 B/op 0 allocs/op
997+
BenchmarkParseBool-8 1000000000 0.5882 ns/op 0 B/op 0 allocs/op
998+
BenchmarkParseInt-8 83396284 14.99 ns/op 0 B/op 0 allocs/op
999+
BenchmarkParseFloat-8 13477732 84.46 ns/op 0 B/op 0 allocs/op
9991000
PASS
1000-
ok _/Users/simonwaldherr/git/golang-benchmarks/parse 3.264s
1001+
ok _/Users/simonwaldherr/git/golang-benchmarks/parse 3.316s
10011002
```
10021003

10031004
### random
@@ -1061,11 +1062,11 @@ $ go test -bench . -benchmem
10611062
goos: darwin
10621063
goarch: amd64
10631064
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
1064-
BenchmarkMathRand-8 45063643 25.36 ns/op 0 B/op 0 allocs/op
1065-
BenchmarkCryptoRand-8 1000000 1029 ns/op 56 B/op 4 allocs/op
1066-
BenchmarkCryptoRandString-8 7135890 166.2 ns/op 128 B/op 3 allocs/op
1065+
BenchmarkMathRand-8 42074916 25.85 ns/op 0 B/op 0 allocs/op
1066+
BenchmarkCryptoRand-8 1000000 1065 ns/op 56 B/op 4 allocs/op
1067+
BenchmarkCryptoRandString-8 7160065 167.4 ns/op 128 B/op 3 allocs/op
10671068
PASS
1068-
ok _/Users/simonwaldherr/git/golang-benchmarks/random 3.734s
1069+
ok _/Users/simonwaldherr/git/golang-benchmarks/random 3.729s
10691070
```
10701071

10711072
### regexp
@@ -1120,10 +1121,10 @@ $ go test -bench . -benchmem
11201121
goos: darwin
11211122
goarch: amd64
11221123
cpu: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz
1123-
BenchmarkMatchString-8 133582 9067 ns/op 9967 B/op 86 allocs/op
1124-
BenchmarkMatchStringCompiled-8 2226567 535.7 ns/op 0 B/op 0 allocs/op
1125-
BenchmarkMatchStringGolibs-8 2187058 545.0 ns/op 0 B/op 0 allocs/op
1124+
BenchmarkMatchString-8 127314 8806 ns/op 9969 B/op 86 allocs/op
1125+
BenchmarkMatchStringCompiled-8 2375599 504.8 ns/op 0 B/op 0 allocs/op
1126+
BenchmarkMatchStringGolibs-8 2338389 514.2 ns/op 0 B/op 0 allocs/op
11261127
PASS
1127-
ok _/Users/simonwaldherr/git/golang-benchmarks/regexp 5.899s
1128+
ok _/Users/simonwaldherr/git/golang-benchmarks/regexp 4.817s
11281129
```
11291130

0 commit comments

Comments
 (0)