blob: f36820d369bab3050f2e1a5a86b4ef85ee31e24d [file] [log] [blame] [view]
Austin Clements25f73312017-08-29 17:18:50 -04001These are benchmarks collected from the community used to measure the effects of changes to the Go core (compiler, runtime, and libraries). They should have the following properties:
dr2chaseb6d26032017-08-29 16:20:54 -04002
3 - they matter; someone cares, perhaps in a dollars-and-cents way, that they run well
4 - they are go-gettable and don't require customized steps for building the benchmark
Austin Clementsf5f45b52017-08-29 17:21:35 -04005 - they run under `go test -bench ...`
dr2chaseb6d26032017-08-29 16:20:54 -04006 - they run relatively quickly, ideally a single "run" takes less than a second (there should perhaps be a separate set of longer-running benchmarks)
7 - their timings are not gratuitously noisy
8 - they run cleanly in a restricted environment, such as a Docker or rkt container
9 - they're not gratuitously redundant with other benchmarks already in the list; we don't need ten microbenchmarks of Go transcendental functions
10
11Information for each benchmark includes (or should include):
12
13 - a short name for the benchmark
14 - the path to `go get` the benchmark
15 - a regexp for the benchmark suite excluding individual benchmarks that might be noisy, long-running, or redundant
16 - (ideally) a contact person for questions about the benchmarks
17
Austin Clements7a4d7612017-08-29 17:20:03 -040018 | short name | notes | go get path | benchmark regexp | contact |
dr2chaseb6d26032017-08-29 16:20:54 -040019 | ---------- | ----- | ----------- | ---------------- | ------- |
dr2chase2e375032018-01-30 15:09:57 -050020 | capnproto2 | | `zombiezen.com/go/capnproto2/` | `Benchmark(TextMovementBetweenSegments\|Growth_MultiSegment)` | |
dr2chaseb6d26032017-08-29 16:20:54 -040021 | ethereum_bitutil | | `github.com/ethereum/go-ethereum/common/bitutil` | `Benchmark(BaseTest2KB\|FastTest2KB\|Encoding4KBVerySparse)` | |
dr2chaseb6d26032017-08-29 16:20:54 -040022 | ethereum_core | | `github.com/ethereum/go-ethereum/core` | `BenchmarkChainRead_full_10k` | |
dr2chaseb6d26032017-08-29 16:20:54 -040023 | ethereum_corevm | | `github.com/ethereum/go-ethereum/core/vm` | `BenchmarkOpDiv128` | |
dr2chasedf9c2b22017-09-22 10:42:31 -040024 | ethereum_ecies | | `github.com/ethereum/go-ethereum/crypto/ecies` | `BenchmarkGenSharedKeyP256` | |
25 | ethereum_ethash | | `github.com/ethereum/go-ethereum/consensus/ethash` | `BenchmarkHashimotoLight` | |
26 | ethereum_sha3 | | `github.com/ethereum/go-ethereum/crypto/sha3` | `BenchmarkSha3_224_MTU` | |
27 | ethereum_storage | | `github.com/ethereum/go-ethereum/swarm/storage` | `BenchmarkJoin_8` | |
Sebastien Binetddc9daa2017-08-31 11:01:44 +020028 | gonum_blas_native | | `gonum.org/v1/gonum/blas/gonum` | `Benchmark(DasumMediumUnitaryInc\|Dnrm2MediumPosInc)` | |
dr2chasedf9c2b22017-09-22 10:42:31 -040029 | gonum_community | | `gonum.org/v1/gonum/graph/community/` | `BenchmarkLouvainDirectedMultiplex` | |
Sebastien Binetddc9daa2017-08-31 11:01:44 +020030 | gonum_lapack_native | | `gonum.org/v1/gonum/lapack/gonum` | `BenchmarkDgeev/Circulant10` | |
31 | gonum_mat | | `gonum.org/v1/gonum/mat` | `Benchmark(MulWorkspaceDense1000Hundredth\|ScaleVec10000Inc20)` | |
dr2chasedf9c2b22017-09-22 10:42:31 -040032 | gonum_path | | `gonum.org/v1/gonum/graph/path/` | `Benchmark(AStarUndirectedmallWorld_10_2_2_2_Heur\|Dominators/nested_if_n256)` | |
33 | gonum_topo | | `gonum.org/v1/gonum/graph/topo/` | `Benchmark(TarjanSCCGnp_1000_half\|TarjanSCCGnp_10_tenth)` | |
34 | gonum_traverse | | `gonum.org/v1/gonum/graph/traverse/` | `BenchmarkWalkAllBreadthFirstGnp_(10\|1000)_tenth` | |
dr2chaseb6d26032017-08-29 16:20:54 -040035 | hugo_helpers | | `github.com/gohugoio/hugo/helpers` | `Benchmark(StripHTML\|ReaderContains)` | |
36 | hugo_hugolib | | `github.com/gohugoio/hugo/hugolib` | `BenchmarkParsePage` | |
37 | hugo_hugolib_sitebuilding | | `github.com/gohugoio/hugo/hugolib` | `BenchmarkSiteBuilding/YAML,num_pages=10,num_tags=10,tags_per_page=20,shortcodes,render-12` | |
dr2chase2e375032018-01-30 15:09:57 -050038 | k8s_api | | `k8s.io/kubernetes/pkg/api/testing` | `BenchmarkEncodeCodecFromInternalProtobuf` | |
dr2chasedf9c2b22017-09-22 10:42:31 -040039 | minio | | `github.com/minio/minio/cmd` | `BenchmarkGetObject5MbFS` | |
40 | semver | | `github.com/Masterminds/semver` | `BenchmarkValidateVersionTildeFail` | |
41 | spexs2 | | `github.com/egonelbre/spexs2/_benchmark/` | `BenchmarkRun/10k/1` | |
42 | uuid | | `github.com/satori/go.uuid/` | `Benchmark(NewV5\|MarshalToString)` | |
43
dr2chase2e375032018-01-30 15:09:57 -050044There is a [benchmark runner](https://github.com/dr2chase/bent) that automates downloading, building, and running these benchmarks under various (user-defined) configurations. Benchmarking noise on Linux can be somewhat reduced with [perflock](https://github.com/aclements/perflock).
45
dr2chasedf9c2b22017-09-22 10:42:31 -040046A few have been proposed but have so far failed to make the cut (for fetch, build, or noise problems):
47
48 | short name | notes | go get path | benchmark regexp | contact |
49 | ---------- | ----- | ----------- | ---------------- | ------- |
dr2chase2e375032018-01-30 15:09:57 -050050 | eolian_dsp | | `buddin.us/eolian/dsp` | `Benchmark` | |
dr2chasedf9c2b22017-09-22 10:42:31 -040051 | ethereum_trie | | `github.com/ethereum/go-ethereum/trie` | `Benchmark` | |
52 | ethereum_whisperv5 | | `github.com/ethereum/go-ethereum/whisper/whisperv5` | `Benchmark` | |
dr2chase2e375032018-01-30 15:09:57 -050053 | k8s_schedulercache | | `k8s.io/kubernetes/plugin/pkg/scheduler/schedulercache` | `Benchmark` | |
dr2chasedf9c2b22017-09-22 10:42:31 -040054 | kanzi | | `github.com/flanglet/kanzi/go/src/kanzi/benchmark` | `Benchmark` | |
55 | uber_zap | | `github.com/uber-go/zap/benchmarks` | `Benchmark` | |