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

Bencher: Add method to run once? #42983

Closed
joliss opened this issue Jun 30, 2017 · 2 comments
Closed

Bencher: Add method to run once? #42983

joliss opened this issue Jun 30, 2017 · 2 comments
Labels
A-libtest Area: `#[test]` / the `test` library

Comments

@joliss
Copy link
Contributor

joliss commented Jun 30, 2017

I hope it's OK to post a feature request here—feel free to just close if you want to declutter the issue tracker.

I've found myself wishing I had a function to benchmark something just once (or a fixed number of times), e.g. b.once, in addition to the b.iter method:

#[bench]
fn foo_bench(b: &mut Bencher) {
    b.once(|| {
        // Do something slow and expensive
    });
}

Alternatively, perhaps libtest could allow for printing timings for the entire function. It could do that either by detecting that we're not calling b.iter, or by inspecting the function signature to check if there is no Bencher parameter.

#[bench]
fn foo_bench(_b: &mut Bencher) {
    // Do something slow and expensive
}

Right now if we do this, it just prints bench: 0 ns/iter (+/- 0), even if the function is actually quite slow.

@Mark-Simulacrum Mark-Simulacrum added the A-libtest Area: `#[test]` / the `test` library label Jun 30, 2017
@Mark-Simulacrum
Copy link
Member

I'm actually going to close this in favor of #11010 since I think that's the underlying problem here. Could you add a comment there with your suggestion? It sounds interesting, though I think possibly not quite ideal -- I'd worry that one run may not give us enough information to say how long it takes per iteration....

@joliss
Copy link
Contributor Author

joliss commented Jun 30, 2017

Sounds good. I've added my use case there and provided some motivation.

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
Projects
None yet
Development

No branches or pull requests

2 participants