-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Closed
Labels
Milestone
Description
Currently go benchmark output reports some labels:
$ go version
go version go1.11.1 linux/amd64
$ go test -run NONE -bench . crypto/aes
goos: linux
goarch: amd64
pkg: crypto/aes
BenchmarkEncrypt-8 100000000 10.5 ns/op 1516.95 MB/s
BenchmarkDecrypt-8 100000000 10.2 ns/op 1566.61 MB/s
BenchmarkExpand-8 20000000 57.3 ns/op
PASS
ok crypto/aes 3.310s
These are added by
Lines 277 to 283 in dd78955
| labelsOnce.Do(func() { | |
| fmt.Fprintf(b.w, "goos: %s\n", runtime.GOOS) | |
| fmt.Fprintf(b.w, "goarch: %s\n", runtime.GOARCH) | |
| if b.importPath != "" { | |
| fmt.Fprintf(b.w, "pkg: %s\n", b.importPath) | |
| } | |
| }) |
It would be great if the user could add custom labels relevant to the performance of their code. For example:
- CPU type/Microarchitecture/CPUID bits
- Software version (perhaps git tag)
- Presumably many others
I have noticed that the perf.golang.org service appears to support this, but I haven't looked into exactly how. Apologies if I've overlooked some existing feature.
Reactions are currently unavailable