Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to clear the CPU caches while benchmarking #43885

Closed
eira-fransham opened this issue Aug 15, 2017 · 1 comment
Closed

Add option to clear the CPU caches while benchmarking #43885

eira-fransham opened this issue Aug 15, 2017 · 1 comment
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.

Comments

@eira-fransham
Copy link

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 explicit asm 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.

@Mark-Simulacrum Mark-Simulacrum added 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. labels Aug 20, 2017
@dtolnay
Copy link
Member

dtolnay commented Nov 18, 2017

Thanks! I agree this seems important to support in a convenient way.

I would prefer to track this as part of rust-lang/rfcs#816 -- that way we keep the standard test framework minimal while allowing libraries to develop more sophisticated custom test frameworks with advanced control of CPU caches and other nice things.

@dtolnay dtolnay closed this as completed Nov 18, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
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.
Projects
None yet
Development

No branches or pull requests

3 participants