Add option to clear the CPU caches while benchmarking #43885
Labels
A-libtest
Area: `#[test]` / the `test` library
C-feature-request
Category: A feature request, i.e: not implemented / a PR.
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
Often a more representative view of a piece of code's performance is on a cold cache, especially when it does a lot of reading of statics (which will be allocated in the same place each time and so will stay warm between benching rounds). It's pretty simple to clear the CPU cache in single-threaded code - just read a massive array using
test::black_box()
or suchlike, and possibly run some straight-line explicitasm
to clear the instruction cache. The only unanswered question is how to reliably time it.This should probably not be incorporated into the standard benching functions since it will significantly slow down pretty much every benchmark, but for some use-cases it's invaluable.
The text was updated successfully, but these errors were encountered: