golang / go

The Go programming language
https://go.dev
BSD 3-Clause "New" or "Revised" License
122.86k stars 17.52k forks source link

testing: collect performance counters for benchmarks #21295

Open cherrymui opened 7 years ago

cherrymui commented 7 years ago

Performance counters may be helpful for benchmarking:

It may be hard to do it in a portable way. But doing it only on platforms that are available would still be nice.

@aclements

cherrymui commented 7 years ago

Discussed with @aclements. Open an issue for tracking.

josharian commented 7 years ago

@martisch and I also discussed this recently. Having cache misses and branch mispredictions would be super helpful.

aclements commented 7 years ago

I think this would be great. Probably we would want to build this on #16110. Probably we would want to put this behind a flag to go test since it will increase its chattiness (then it could also fail if the flag was specified but couldn't be supported).

rsc commented 7 years ago

What is the proposal to evaluate here? Everyone (including me) seems to think this is a good idea but there are no actual details.

aclements commented 7 years ago

Here's a more concrete proposal as a starting point.

Add a -test.benchperf flag to the flags exported by the standard testing package. When this flag is specified, benchmarks report additional per-operation metrics based on performance counters exposed by the hardware performance monitoring unit. If this flag is passed but the platform does not support hardware performance counters, it is a no-op. Exact counters would depend on the platform, but a good set to collect on x86 is: cycles, LLC-misses, branch-misses. These would be reported as new metrics cycles/op, etc.

On Linux, this would be built on the kernel's perf_event_open API, which takes an event description and returns an FD from which the event counter's current value can be read at any time.

Questions:

randall77 commented 7 years ago

-test.counters

I want a retired instruction count. That's even more stable than cycles (although not as important).

rsc commented 6 years ago

Sure, -test.counters seems fine (or something else if you decide that's not accurate enough). Marking proposal accepted.

rsc commented 6 years ago

Please do give some thought to having a few -counters= names that work portably across architectures. If there's a cycle count for x86 and one for arm it would be nice if there is a single name that enables either one, for example. (I'm assuming this is a comma-separated list and that unknown things are just ignored, or something like that.)

aclements commented 6 years ago

FWIW, Linux perf has a list of portable names already, printed by perf list (specifically the "Hardware event" and "Hardware cache event" categories). I'm pretty sure the "Hardware events" are supported basically everywhere. I'm less sure about the "Hardware cache events". These event types are baked into the perf ABI.

For reference, here are the "Hardware events": branch-instructions (alias branches), branch-misses, bus-cycles, cache-misses, cache-references, cpu-cycles (alias cycles), instructions, ref-cycles.

clausecker commented 3 years ago

Has there been any progress on this one?

aclements commented 4 weeks ago

I recently wrote https://pkg.go.dev/github.com/aclements/go-perfevent/perfbench to do this as a library. Of course, you have to (slightly) modify each benchmark to enable this, which is much less ergonomic than a flag supported everywhere.

The other problem is that, to do this properly, you need runtime help. In Linux perf, at least, performance counters are per OS thread. In my package, I worked around this by calling LockOSThread, but that can have other performance effects and is fragile if a benchmark starts another goroutine. I see two viable options: