Skip to content

Commit 454e723

Browse files
committed
rerun with go 1.22.3
1 parent e27b37a commit 454e723

File tree

1 file changed

+91
-91
lines changed

1 file changed

+91
-91
lines changed

README.md

+91-91
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ If you\'re interested in new programming languages, you should definitely take a
4343

4444
## Benchmark Results
4545

46-
Golang Version: [go version go1.22.2 darwin/arm64](https://tip.golang.org/doc/go1.22)
46+
Golang Version: [go version go1.22.3 darwin/arm64](https://tip.golang.org/doc/go1.22)
4747
Hardware Spec: [Apple MacBook Pro 16-Inch M2 Max 2023](https://support.apple.com/kb/SP890) [(?)](https://everymac.com/systems/apple/macbook_pro/specs/macbook-pro-m2-max-12-core-cpu-30-core-gpu-16-2023-specs.html) [(buy)](https://amzn.to/3K80lP4)
4848

4949
### base64
@@ -95,10 +95,10 @@ func BenchmarkBase64regex(b *testing.B) {
9595
$ go test -bench . -benchmem
9696
goos: darwin
9797
goarch: arm64
98-
BenchmarkBase64decode-12 22570902 53.14 ns/op 32 B/op 2 allocs/op
99-
BenchmarkBase64regex-12 123813 9611 ns/op 21923 B/op 198 allocs/op
98+
BenchmarkBase64decode-12 19996819 54.32 ns/op 32 B/op 2 allocs/op
99+
BenchmarkBase64regex-12 124668 9656 ns/op 21930 B/op 198 allocs/op
100100
PASS
101-
ok _/Users/simonwaldherr/git/golang-benchmarks/base64 3.602s
101+
ok _/Users/simonwaldherr/git/golang-benchmarks/base64 2.628s
102102
```
103103

104104
### between
@@ -190,12 +190,12 @@ func BenchmarkFulltextParse(b *testing.B) {
190190
$ go test -bench . -benchmem
191191
goos: darwin
192192
goarch: arm64
193-
BenchmarkNumberRegEx-12 182192 6602 ns/op 16892 B/op 142 allocs/op
194-
BenchmarkFulltextRegEx-12 221989 5415 ns/op 12090 B/op 104 allocs/op
195-
BenchmarkNumberParse-12 34188926 35.17 ns/op 0 B/op 0 allocs/op
196-
BenchmarkFulltextParse-12 2599945 463.3 ns/op 32 B/op 2 allocs/op
193+
BenchmarkNumberRegEx-12 150912 6691 ns/op 16885 B/op 142 allocs/op
194+
BenchmarkFulltextRegEx-12 220384 5577 ns/op 12096 B/op 104 allocs/op
195+
BenchmarkNumberParse-12 34177120 36.02 ns/op 0 B/op 0 allocs/op
196+
BenchmarkFulltextParse-12 2583351 473.2 ns/op 32 B/op 2 allocs/op
197197
PASS
198-
ok _/Users/simonwaldherr/git/golang-benchmarks/between 6.547s
198+
ok _/Users/simonwaldherr/git/golang-benchmarks/between 5.487s
199199
```
200200

201201
### caseinsensitivecompare
@@ -237,11 +237,11 @@ func BenchmarkToLower(b *testing.B) {
237237
$ go test -bench . -benchmem
238238
goos: darwin
239239
goarch: arm64
240-
BenchmarkEqualFold-12 84440305 14.07 ns/op 0 B/op 0 allocs/op
241-
BenchmarkToUpper-12 11396385 104.7 ns/op 16 B/op 3 allocs/op
242-
BenchmarkToLower-12 8940337 133.7 ns/op 20 B/op 5 allocs/op
240+
BenchmarkEqualFold-12 83169073 14.28 ns/op 0 B/op 0 allocs/op
241+
BenchmarkToUpper-12 11368695 104.5 ns/op 16 B/op 3 allocs/op
242+
BenchmarkToLower-12 8984072 133.8 ns/op 20 B/op 5 allocs/op
243243
PASS
244-
ok _/Users/simonwaldherr/git/golang-benchmarks/caseinsensitivecompare 4.802s
244+
ok _/Users/simonwaldherr/git/golang-benchmarks/caseinsensitivecompare 4.899s
245245
```
246246

247247
### concat
@@ -287,11 +287,11 @@ func BenchmarkConcatBuilder(b *testing.B) {
287287
$ go test -bench . -benchmem
288288
goos: darwin
289289
goarch: arm64
290-
BenchmarkConcatString-12 1000000 25790 ns/op 503993 B/op 1 allocs/op
291-
BenchmarkConcatBuffer-12 323728160 3.800 ns/op 3 B/op 0 allocs/op
292-
BenchmarkConcatBuilder-12 574879327 2.166 ns/op 5 B/op 0 allocs/op
290+
BenchmarkConcatString-12 1000000 25979 ns/op 503993 B/op 1 allocs/op
291+
BenchmarkConcatBuffer-12 316726768 3.862 ns/op 3 B/op 0 allocs/op
292+
BenchmarkConcatBuilder-12 566796470 2.227 ns/op 5 B/op 0 allocs/op
293293
PASS
294-
ok _/Users/simonwaldherr/git/golang-benchmarks/concat 29.139s
294+
ok _/Users/simonwaldherr/git/golang-benchmarks/concat 29.234s
295295
```
296296

297297
### contains
@@ -441,16 +441,16 @@ func BenchmarkMatchNot(b *testing.B) {
441441
$ go test -bench . -benchmem
442442
goos: darwin
443443
goarch: arm64
444-
BenchmarkContains-12 248624815 4.678 ns/op 0 B/op 0 allocs/op
445-
BenchmarkContainsNot-12 209408414 5.727 ns/op 0 B/op 0 allocs/op
446-
BenchmarkContainsBytes-12 240499497 4.998 ns/op 0 B/op 0 allocs/op
447-
BenchmarkContainsBytesNot-12 195683626 6.157 ns/op 0 B/op 0 allocs/op
448-
BenchmarkCompileMatch-12 25819406 46.40 ns/op 0 B/op 0 allocs/op
449-
BenchmarkCompileMatchNot-12 48758355 24.57 ns/op 0 B/op 0 allocs/op
450-
BenchmarkMatch-12 1681892 716.9 ns/op 1399 B/op 17 allocs/op
451-
BenchmarkMatchNot-12 1750118 684.9 ns/op 1399 B/op 17 allocs/op
444+
BenchmarkContains-12 243319177 4.730 ns/op 0 B/op 0 allocs/op
445+
BenchmarkContainsNot-12 203857521 5.952 ns/op 0 B/op 0 allocs/op
446+
BenchmarkContainsBytes-12 239583264 5.067 ns/op 0 B/op 0 allocs/op
447+
BenchmarkContainsBytesNot-12 193715023 6.245 ns/op 0 B/op 0 allocs/op
448+
BenchmarkCompileMatch-12 25531280 47.67 ns/op 0 B/op 0 allocs/op
449+
BenchmarkCompileMatchNot-12 48846096 24.97 ns/op 0 B/op 0 allocs/op
450+
BenchmarkMatch-12 1600905 733.2 ns/op 1400 B/op 17 allocs/op
451+
BenchmarkMatchNot-12 1709605 692.3 ns/op 1400 B/op 17 allocs/op
452452
PASS
453-
ok _/Users/simonwaldherr/git/golang-benchmarks/contains 13.397s
453+
ok _/Users/simonwaldherr/git/golang-benchmarks/contains 13.517s
454454
```
455455

456456
### foreach
@@ -537,12 +537,12 @@ func BenchmarkRangeSliceKey(b *testing.B) {
537537
$ go test -bench . -benchmem
538538
goos: darwin
539539
goarch: arm64
540-
BenchmarkForMap-12 62434929 19.22 ns/op 0 B/op 0 allocs/op
541-
BenchmarkRangeMap-12 24575223 48.92 ns/op 0 B/op 0 allocs/op
542-
BenchmarkRangeSlice-12 465822912 2.583 ns/op 0 B/op 0 allocs/op
543-
BenchmarkRangeSliceKey-12 466106605 2.574 ns/op 0 B/op 0 allocs/op
540+
BenchmarkForMap-12 60349282 19.73 ns/op 0 B/op 0 allocs/op
541+
BenchmarkRangeMap-12 23453418 50.31 ns/op 0 B/op 0 allocs/op
542+
BenchmarkRangeSlice-12 444954975 2.625 ns/op 0 B/op 0 allocs/op
543+
BenchmarkRangeSliceKey-12 444752958 2.674 ns/op 0 B/op 0 allocs/op
544544
PASS
545-
ok _/Users/simonwaldherr/git/golang-benchmarks/foreach 6.404s
545+
ok _/Users/simonwaldherr/git/golang-benchmarks/foreach 6.329s
546546
```
547547

548548
### hash
@@ -749,37 +749,37 @@ func BenchmarkSHA256Parallel(b *testing.B) {
749749
$ go test -bench . -benchmem
750750
goos: darwin
751751
goarch: arm64
752-
BenchmarkAdler32-12 1800184 642.4 ns/op 8 B/op 1 allocs/op
753-
BenchmarkBCryptCost4-12 622757101 1.931 ns/op 0 B/op 0 allocs/op
754-
BenchmarkBCryptCost10-12 623375004 1.931 ns/op 0 B/op 0 allocs/op
755-
BenchmarkBCryptCost16-12 621611890 1.932 ns/op 0 B/op 0 allocs/op
756-
BenchmarkBlake2b256-12 485863 2470 ns/op 32 B/op 1 allocs/op
757-
BenchmarkBlake2b512-12 485788 2472 ns/op 64 B/op 1 allocs/op
758-
BenchmarkBlake3256-12 422053 2821 ns/op 64 B/op 2 allocs/op
759-
BenchmarkMMH3-12 3772183 318.0 ns/op 16 B/op 1 allocs/op
760-
BenchmarkCRC32-12 5089725 235.0 ns/op 8 B/op 1 allocs/op
761-
BenchmarkCRC64ISO-12 989846 1209 ns/op 8 B/op 1 allocs/op
762-
BenchmarkCRC64ECMA-12 991704 1210 ns/op 8 B/op 1 allocs/op
763-
BenchmarkFnv32-12 518328 2316 ns/op 8 B/op 1 allocs/op
764-
BenchmarkFnv32a-12 518020 2315 ns/op 8 B/op 1 allocs/op
765-
BenchmarkFnv64-12 514922 2317 ns/op 8 B/op 1 allocs/op
766-
BenchmarkFnv64a-12 517004 2319 ns/op 8 B/op 1 allocs/op
767-
BenchmarkFnv128-12 314757 3815 ns/op 16 B/op 1 allocs/op
768-
BenchmarkFnv128a-12 496838 2412 ns/op 16 B/op 1 allocs/op
769-
BenchmarkMD4-12 427122 2808 ns/op 24 B/op 2 allocs/op
770-
BenchmarkMD5-12 411250 2914 ns/op 16 B/op 1 allocs/op
771-
BenchmarkSHA1-12 1465281 819.0 ns/op 24 B/op 1 allocs/op
772-
BenchmarkSHA224-12 1460922 821.6 ns/op 32 B/op 1 allocs/op
773-
BenchmarkSHA256-12 1461248 820.9 ns/op 32 B/op 1 allocs/op
774-
BenchmarkSHA384-12 844210 1421 ns/op 48 B/op 1 allocs/op
775-
BenchmarkSHA512-12 844970 1424 ns/op 64 B/op 1 allocs/op
776-
BenchmarkSHA3256-12 238027 5108 ns/op 480 B/op 2 allocs/op
777-
BenchmarkSHA3512-12 133412 8962 ns/op 512 B/op 2 allocs/op
778-
BenchmarkRIPEMD160-12 206498 5803 ns/op 24 B/op 1 allocs/op
779-
BenchmarkWhirlpool-12 46780 25635 ns/op 64 B/op 1 allocs/op
780-
BenchmarkSHA256Parallel-12 13182267 90.22 ns/op 32 B/op 1 allocs/op
752+
BenchmarkAdler32-12 1736274 644.9 ns/op 8 B/op 1 allocs/op
753+
BenchmarkBCryptCost4-12 617988486 1.950 ns/op 0 B/op 0 allocs/op
754+
BenchmarkBCryptCost10-12 612595080 1.941 ns/op 0 B/op 0 allocs/op
755+
BenchmarkBCryptCost16-12 623830992 1.938 ns/op 0 B/op 0 allocs/op
756+
BenchmarkBlake2b256-12 467415 2487 ns/op 32 B/op 1 allocs/op
757+
BenchmarkBlake2b512-12 481509 2484 ns/op 64 B/op 1 allocs/op
758+
BenchmarkBlake3256-12 424382 2824 ns/op 64 B/op 2 allocs/op
759+
BenchmarkMMH3-12 3761997 319.6 ns/op 16 B/op 1 allocs/op
760+
BenchmarkCRC32-12 5076656 235.7 ns/op 8 B/op 1 allocs/op
761+
BenchmarkCRC64ISO-12 969268 1221 ns/op 8 B/op 1 allocs/op
762+
BenchmarkCRC64ECMA-12 978988 1271 ns/op 8 B/op 1 allocs/op
763+
BenchmarkFnv32-12 510414 2595 ns/op 8 B/op 1 allocs/op
764+
BenchmarkFnv32a-12 500038 2373 ns/op 8 B/op 1 allocs/op
765+
BenchmarkFnv64-12 514794 2341 ns/op 8 B/op 1 allocs/op
766+
BenchmarkFnv64a-12 514521 2341 ns/op 8 B/op 1 allocs/op
767+
BenchmarkFnv128-12 313018 4043 ns/op 16 B/op 1 allocs/op
768+
BenchmarkFnv128a-12 469338 2545 ns/op 16 B/op 1 allocs/op
769+
BenchmarkMD4-12 404767 2934 ns/op 24 B/op 2 allocs/op
770+
BenchmarkMD5-12 397561 2978 ns/op 16 B/op 1 allocs/op
771+
BenchmarkSHA1-12 1417716 839.9 ns/op 24 B/op 1 allocs/op
772+
BenchmarkSHA224-12 1397877 856.2 ns/op 32 B/op 1 allocs/op
773+
BenchmarkSHA256-12 1386200 849.4 ns/op 32 B/op 1 allocs/op
774+
BenchmarkSHA384-12 805606 1443 ns/op 48 B/op 1 allocs/op
775+
BenchmarkSHA512-12 843320 1467 ns/op 64 B/op 1 allocs/op
776+
BenchmarkSHA3256-12 226137 5279 ns/op 480 B/op 2 allocs/op
777+
BenchmarkSHA3512-12 129634 9239 ns/op 512 B/op 2 allocs/op
778+
BenchmarkRIPEMD160-12 200340 6007 ns/op 24 B/op 1 allocs/op
779+
BenchmarkWhirlpool-12 45129 26826 ns/op 64 B/op 1 allocs/op
780+
BenchmarkSHA256Parallel-12 13299388 96.35 ns/op 32 B/op 1 allocs/op
781781
PASS
782-
ok _/Users/simonwaldherr/git/golang-benchmarks/hash 40.091s
782+
ok _/Users/simonwaldherr/git/golang-benchmarks/hash 40.505s
783783
```
784784

785785
### index
@@ -888,12 +888,12 @@ func BenchmarkMapIntIndex(b *testing.B) {
888888
$ go test -bench . -benchmem
889889
goos: darwin
890890
goarch: arm64
891-
BenchmarkMapStringKeys-12 24738229 45.54 ns/op 0 B/op 0 allocs/op
892-
BenchmarkMapIntKeys-12 42420687 24.84 ns/op 0 B/op 0 allocs/op
893-
BenchmarkMapStringIndex-12 24387186 45.30 ns/op 0 B/op 0 allocs/op
894-
BenchmarkMapIntIndex-12 42539552 24.81 ns/op 0 B/op 0 allocs/op
891+
BenchmarkMapStringKeys-12 19577160 54.10 ns/op 0 B/op 0 allocs/op
892+
BenchmarkMapIntKeys-12 41623549 27.73 ns/op 0 B/op 0 allocs/op
893+
BenchmarkMapStringIndex-12 22315063 54.91 ns/op 0 B/op 0 allocs/op
894+
BenchmarkMapIntIndex-12 41915013 25.28 ns/op 0 B/op 0 allocs/op
895895
PASS
896-
ok _/Users/simonwaldherr/git/golang-benchmarks/index 5.399s
896+
ok _/Users/simonwaldherr/git/golang-benchmarks/index 6.628s
897897
```
898898

899899
### json
@@ -984,10 +984,10 @@ func BenchmarkJsonUnmarshal(b *testing.B) {
984984
$ go test -bench . -benchmem
985985
goos: darwin
986986
goarch: arm64
987-
BenchmarkJsonMarshal-12 1713488 683.7 ns/op 480 B/op 5 allocs/op
988-
BenchmarkJsonUnmarshal-12 347044 3430 ns/op 1816 B/op 27 allocs/op
987+
BenchmarkJsonMarshal-12 1550515 748.4 ns/op 480 B/op 5 allocs/op
988+
BenchmarkJsonUnmarshal-12 327422 3756 ns/op 1816 B/op 27 allocs/op
989989
PASS
990-
ok _/Users/simonwaldherr/git/golang-benchmarks/json 3.263s
990+
ok _/Users/simonwaldherr/git/golang-benchmarks/json 3.195s
991991
```
992992

993993
### math
@@ -1070,16 +1070,16 @@ func BenchmarkMathFloat64(b *testing.B) {
10701070
$ go test -bench . -benchmem
10711071
goos: darwin
10721072
goarch: arm64
1073-
BenchmarkMathInt8-12 1000000000 0.2929 ns/op 0 B/op 0 allocs/op
1074-
BenchmarkMathInt32-12 1000000000 0.2866 ns/op 0 B/op 0 allocs/op
1075-
BenchmarkMathInt64-12 1000000000 0.2861 ns/op 0 B/op 0 allocs/op
1076-
BenchmarkMathAtomicInt32-12 308520037 3.875 ns/op 0 B/op 0 allocs/op
1077-
BenchmarkMathAtomicInt64-12 309668128 3.874 ns/op 0 B/op 0 allocs/op
1078-
BenchmarkMathMutexInt-12 155485688 7.732 ns/op 0 B/op 0 allocs/op
1079-
BenchmarkMathFloat32-12 1000000000 0.2862 ns/op 0 B/op 0 allocs/op
1080-
BenchmarkMathFloat64-12 1000000000 0.2862 ns/op 0 B/op 0 allocs/op
1073+
BenchmarkMathInt8-12 1000000000 0.3023 ns/op 0 B/op 0 allocs/op
1074+
BenchmarkMathInt32-12 1000000000 0.3016 ns/op 0 B/op 0 allocs/op
1075+
BenchmarkMathInt64-12 1000000000 0.3124 ns/op 0 B/op 0 allocs/op
1076+
BenchmarkMathAtomicInt32-12 297988206 4.604 ns/op 0 B/op 0 allocs/op
1077+
BenchmarkMathAtomicInt64-12 287726745 4.017 ns/op 0 B/op 0 allocs/op
1078+
BenchmarkMathMutexInt-12 151071498 7.978 ns/op 0 B/op 0 allocs/op
1079+
BenchmarkMathFloat32-12 1000000000 0.2875 ns/op 0 B/op 0 allocs/op
1080+
BenchmarkMathFloat64-12 1000000000 0.2923 ns/op 0 B/op 0 allocs/op
10811081
PASS
1082-
ok _/Users/simonwaldherr/git/golang-benchmarks/math 6.915s
1082+
ok _/Users/simonwaldherr/git/golang-benchmarks/math 7.171s
10831083
```
10841084

10851085
### parse
@@ -1125,11 +1125,11 @@ func BenchmarkParseFloat(b *testing.B) {
11251125
$ go test -bench . -benchmem
11261126
goos: darwin
11271127
goarch: arm64
1128-
BenchmarkParseBool-12 1000000000 0.2939 ns/op 0 B/op 0 allocs/op
1129-
BenchmarkParseInt-12 126515678 9.524 ns/op 0 B/op 0 allocs/op
1130-
BenchmarkParseFloat-12 20548032 58.16 ns/op 0 B/op 0 allocs/op
1128+
BenchmarkParseBool-12 1000000000 0.3024 ns/op 0 B/op 0 allocs/op
1129+
BenchmarkParseInt-12 122175952 9.851 ns/op 0 B/op 0 allocs/op
1130+
BenchmarkParseFloat-12 19506550 60.94 ns/op 0 B/op 0 allocs/op
11311131
PASS
1132-
ok _/Users/simonwaldherr/git/golang-benchmarks/parse 3.913s
1132+
ok _/Users/simonwaldherr/git/golang-benchmarks/parse 3.927s
11331133
```
11341134

11351135
### random
@@ -1201,12 +1201,12 @@ func GenerateRandomString(s int) (string, error) {
12011201
$ go test -bench . -benchmem
12021202
goos: darwin
12031203
goarch: arm64
1204-
BenchmarkMathRand-12 177168873 6.631 ns/op 0 B/op 0 allocs/op
1205-
BenchmarkCryptoRand-12 3753054 321.7 ns/op 48 B/op 3 allocs/op
1206-
BenchmarkCryptoRandString-12 10911781 110.1 ns/op 128 B/op 3 allocs/op
1207-
BenchmarkCryptoRandBytes-12 20838970 57.35 ns/op 32 B/op 1 allocs/op
1204+
BenchmarkMathRand-12 172488864 6.813 ns/op 0 B/op 0 allocs/op
1205+
BenchmarkCryptoRand-12 3291207 359.5 ns/op 48 B/op 3 allocs/op
1206+
BenchmarkCryptoRandString-12 10238113 115.1 ns/op 128 B/op 3 allocs/op
1207+
BenchmarkCryptoRandBytes-12 19756704 60.27 ns/op 32 B/op 1 allocs/op
12081208
PASS
1209-
ok _/Users/simonwaldherr/git/golang-benchmarks/random 6.109s
1209+
ok _/Users/simonwaldherr/git/golang-benchmarks/random 6.124s
12101210
```
12111211

12121212
### regexp
@@ -1260,10 +1260,10 @@ func BenchmarkMatchStringGolibs(b *testing.B) {
12601260
$ go test -bench . -benchmem
12611261
goos: darwin
12621262
goarch: arm64
1263-
BenchmarkMatchString-12 292735 4080 ns/op 10225 B/op 86 allocs/op
1264-
BenchmarkMatchStringCompiled-12 3815248 314.2 ns/op 0 B/op 0 allocs/op
1265-
BenchmarkMatchStringGolibs-12 3776694 317.0 ns/op 0 B/op 0 allocs/op
1263+
BenchmarkMatchString-12 254317 4348 ns/op 10230 B/op 86 allocs/op
1264+
BenchmarkMatchStringCompiled-12 3690358 318.8 ns/op 0 B/op 0 allocs/op
1265+
BenchmarkMatchStringGolibs-12 3776370 323.4 ns/op 0 B/op 0 allocs/op
12661266
PASS
1267-
ok _/Users/simonwaldherr/git/golang-benchmarks/regexp 5.297s
1267+
ok _/Users/simonwaldherr/git/golang-benchmarks/regexp 4.344s
12681268
```
12691269

0 commit comments

Comments
 (0)