test/bench/go1: eliminate start-up time

The go1 benchmark suite does a lot of work at package init time, which
makes it take quite a while to run even if you're not running any of
the benchmarks, or if you're only running a subset of them. This leads
to an awkward workaround in dist test to compile but not run the
package, unlike roughly all other packages. It also reduces isolation
between benchmarks by affecting the starting heap size of all
benchmarks.

Fix this by initializing all data required by a benchmark when that
benchmark runs, and keeping it local so it gets freed by the GC and
doesn't leak between benchmarks. Now, none of the benchmarks depend on
global state.

Re-initializing the data on each benchmark run does add overhead to an
actual benchmark run, as each benchmark function is called several
times with different values of b.N. A full run of all benchmarks at
the default -benchtime=1s now takes ~10% longer; higher -benchtimes
would be less. It would be quite difficult to cache this data between
invocations of the same benchmark function without leaking between
different benchmarks and affecting GC overheads, as the testing
package doesn't provide any mechanism for this.

This reduces the time to run the binary with no benchmarks from 1.5
seconds to 10 ms, and also reduces the memory required to do this from
342 MiB to 17 MiB.

To make sure data was not leaking between different benchmarks, I ran
the benchmarks with -shuffle=on. The variance remained low: mostly
under 3%. A few benchmarks had higher variance, but in all cases it
was similar to the variance between this change.

This CL naturally changes the measured performance of several of the
benchmarks because it dramatically changes the heap size and hence GC
overheads. However, going forward the benchmarks should be much better
isolated.

For #37486.

Change-Id: I252ebea703a9560706cc1990dc5ad22d1927c7a0
Reviewed-on: https://go-review.googlesource.com/c/go/+/443336
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
Run-TryBot: Austin Clements <austin@google.com>
This commit is contained in:
Austin Clements 2022-09-16 15:56:16 -04:00
parent 767df51b4d
commit 6a44a3aa9f
7 changed files with 69 additions and 57 deletions

View file

@ -828,9 +828,8 @@ func (t *tester) registerTests() {
if goos != "android" && !t.iOS() {
// There are no tests in this directory, only benchmarks.
// Check that the test binary builds but don't bother running it.
// (It has init-time work to set up for the benchmarks that is not worth doing unnecessarily.)
t.registerTest("bench_go1", "../test/bench/go1", t.goTest(), "-c", "-o="+os.DevNull)
// Check that the test binary builds.
t.registerTest("bench_go1", "../test/bench/go1", t.goTest(), ".")
}
if goos != "android" && !t.iOS() {
// Only start multiple test dir shards on builders,

View file

@ -8,8 +8,6 @@ import "runtime"
// Not a benchmark; input for revcomp.
var fastabytes = makefasta()
func makefasta() []byte {
var n int = 25e6
if runtime.GOARCH == "arm" || runtime.GOARCH == "mips" || runtime.GOARCH == "mips64" {

View file

@ -16,31 +16,28 @@ import (
"testing"
)
var (
gobbytes []byte
gobdata *JSONResponse
)
func init() {
gobdata = gobResponse(&jsondata)
func makeGob(jsondata *JSONResponse) (data *JSONResponse, b []byte) {
data = gobResponse(jsondata)
var buf bytes.Buffer
if err := gob.NewEncoder(&buf).Encode(gobdata); err != nil {
if err := gob.NewEncoder(&buf).Encode(data); err != nil {
panic(err)
}
gobbytes = buf.Bytes()
b = buf.Bytes()
var r JSONResponse
if err := gob.NewDecoder(bytes.NewBuffer(gobbytes)).Decode(&r); err != nil {
if err := gob.NewDecoder(bytes.NewBuffer(b)).Decode(&r); err != nil {
panic(err)
}
if !reflect.DeepEqual(gobdata, &r) {
if !reflect.DeepEqual(data, &r) {
log.Printf("%v\n%v", jsondata, r)
b, _ := json.Marshal(&jsondata)
br, _ := json.Marshal(&r)
log.Printf("%s\n%s\n", b, br)
panic("gob: encode+decode lost data")
}
return
}
// gob turns [] into null, so make a copy of the data structure like that
@ -61,33 +58,38 @@ func gobNode(n *JSONNode) *JSONNode {
return n1
}
func gobdec() {
if gobbytes == nil {
panic("gobdata not initialized")
}
func gobdec(b []byte) {
var r JSONResponse
if err := gob.NewDecoder(bytes.NewBuffer(gobbytes)).Decode(&r); err != nil {
if err := gob.NewDecoder(bytes.NewBuffer(b)).Decode(&r); err != nil {
panic(err)
}
_ = r
}
func gobenc() {
if err := gob.NewEncoder(io.Discard).Encode(&gobdata); err != nil {
func gobenc(data *JSONResponse) {
if err := gob.NewEncoder(io.Discard).Encode(data); err != nil {
panic(err)
}
}
func BenchmarkGobDecode(b *testing.B) {
b.SetBytes(int64(len(gobbytes)))
jsonbytes := makeJsonBytes()
jsondata := makeJsonData(jsonbytes)
_, bytes := makeGob(jsondata)
b.ResetTimer()
b.SetBytes(int64(len(bytes)))
for i := 0; i < b.N; i++ {
gobdec()
gobdec(bytes)
}
}
func BenchmarkGobEncode(b *testing.B) {
b.SetBytes(int64(len(gobbytes)))
jsonbytes := makeJsonBytes()
jsondata := makeJsonData(jsonbytes)
data, bytes := makeGob(jsondata)
b.ResetTimer()
b.SetBytes(int64(len(bytes)))
for i := 0; i < b.N; i++ {
gobenc()
gobenc(data)
}
}

View file

@ -13,20 +13,19 @@ import (
"testing"
)
var (
jsongunz = bytes.Repeat(jsonbytes, 10)
jsongz []byte
)
func makeGunzip(jsonbytes []byte) []byte {
return bytes.Repeat(jsonbytes, 10)
}
func init() {
func makeGzip(jsongunz []byte) []byte {
var buf bytes.Buffer
c := gz.NewWriter(&buf)
c.Write(jsongunz)
c.Close()
jsongz = buf.Bytes()
return buf.Bytes()
}
func gzip() {
func gzip(jsongunz []byte) {
c := gz.NewWriter(io.Discard)
if _, err := c.Write(jsongunz); err != nil {
panic(err)
@ -36,7 +35,7 @@ func gzip() {
}
}
func gunzip() {
func gunzip(jsongz []byte) {
r, err := gz.NewReader(bytes.NewBuffer(jsongz))
if err != nil {
panic(err)
@ -48,15 +47,22 @@ func gunzip() {
}
func BenchmarkGzip(b *testing.B) {
jsonbytes := makeJsonBytes()
jsongunz := makeGunzip(jsonbytes)
b.ResetTimer()
b.SetBytes(int64(len(jsongunz)))
for i := 0; i < b.N; i++ {
gzip()
gzip(jsongunz)
}
}
func BenchmarkGunzip(b *testing.B) {
jsonbytes := makeJsonBytes()
jsongunz := makeGunzip(jsonbytes)
jsongz := makeGzip(jsongunz)
b.ResetTimer()
b.SetBytes(int64(len(jsongunz)))
for i := 0; i < b.N; i++ {
gunzip()
gunzip(jsongz)
}
}

View file

@ -15,11 +15,6 @@ import (
"testing"
)
var (
jsonbytes = makeJsonBytes()
jsondata = makeJsonData()
)
func makeJsonBytes() []byte {
var r io.Reader
r = bytes.NewReader(bytes.Replace(jsonbz2_base64, []byte{'\n'}, nil, -1))
@ -32,12 +27,12 @@ func makeJsonBytes() []byte {
return b
}
func makeJsonData() JSONResponse {
func makeJsonData(jsonbytes []byte) *JSONResponse {
var v JSONResponse
if err := json.Unmarshal(jsonbytes, &v); err != nil {
panic(err)
}
return v
return &v
}
type JSONResponse struct {
@ -55,16 +50,16 @@ type JSONNode struct {
MeanT int64 `json:"mean_t"`
}
func jsondec() {
func jsondec(bytes []byte) {
var r JSONResponse
if err := json.Unmarshal(jsonbytes, &r); err != nil {
if err := json.Unmarshal(bytes, &r); err != nil {
panic(err)
}
_ = r
}
func jsonenc() {
buf, err := json.Marshal(&jsondata)
func jsonenc(data *JSONResponse) {
buf, err := json.Marshal(data)
if err != nil {
panic(err)
}
@ -72,15 +67,20 @@ func jsonenc() {
}
func BenchmarkJSONEncode(b *testing.B) {
jsonbytes := makeJsonBytes()
jsondata := makeJsonData(jsonbytes)
b.ResetTimer()
b.SetBytes(int64(len(jsonbytes)))
for i := 0; i < b.N; i++ {
jsonenc()
jsonenc(jsondata)
}
}
func BenchmarkJSONDecode(b *testing.B) {
jsonbytes := makeJsonBytes()
b.ResetTimer()
b.SetBytes(int64(len(jsonbytes)))
for i := 0; i < b.N; i++ {
jsondec()
jsondec(jsonbytes)
}
}

View file

@ -78,8 +78,10 @@ func revcomp(data []byte) {
}
func BenchmarkRevcomp(b *testing.B) {
b.SetBytes(int64(len(fastabytes)))
bytes := makefasta()
b.ResetTimer()
b.SetBytes(int64(len(bytes)))
for i := 0; i < b.N; i++ {
revcomp(fastabytes)
revcomp(bytes)
}
}

View file

@ -49,9 +49,9 @@ func stripTabNL(r rune) rune {
return r
}
var tmpl = template.Must(template.New("main").Parse(strings.Map(stripTabNL, tmplText)))
func makeTemplate(jsonbytes []byte, jsondata *JSONResponse) *template.Template {
tmpl := template.Must(template.New("main").Parse(strings.Map(stripTabNL, tmplText)))
func init() {
var buf bytes.Buffer
if err := tmpl.Execute(&buf, &jsondata); err != nil {
panic(err)
@ -60,17 +60,22 @@ func init() {
println(buf.Len(), len(jsonbytes))
panic("wrong output")
}
return tmpl
}
func tmplexec() {
if err := tmpl.Execute(io.Discard, &jsondata); err != nil {
func tmplexec(tmpl *template.Template, jsondata *JSONResponse) {
if err := tmpl.Execute(io.Discard, jsondata); err != nil {
panic(err)
}
}
func BenchmarkTemplate(b *testing.B) {
jsonbytes := makeJsonBytes()
jsondata := makeJsonData(jsonbytes)
tmpl := makeTemplate(jsonbytes, jsondata)
b.ResetTimer()
b.SetBytes(int64(len(jsonbytes)))
for i := 0; i < b.N; i++ {
tmplexec()
tmplexec(tmpl, jsondata)
}
}