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

benchmarks that take longer than 1ms per iteration aren't run and report 0 ns/iter #9685

Closed
toffaletti opened this issue Oct 2, 2013 · 3 comments

Comments

@toffaletti
Copy link
Contributor

I was randomly seeing benchmarks report 0 ns/iter and had no idea why until @alexcrichton clued me in on the 1ms limit per iter. I'd like to add a warning when the initial iteration takes longer than 1ms so the user knows why the benchmark is "failing". Instead of just reporting 0 ns/iter.

I've got a question on the intent of part of the code before I continue trying to make this change.

https://github.com/mozilla/rust/blob/master/src/libextra/test.rs#L1060

        if self.ns_per_iter() == 0 {
            n = 1_000_000;
        } else {
            n = 1_000_000 / self.ns_per_iter().max(&1);
        }

The .max(&1) seems needless because self.ns_per_iter can only return positive integers and it was just checked for 0. I'm wondering if the line should actually be:

n = (1_000_000 / self.ns_per_iter()).max(&1);

To guarantee at least one iteration is run. If zero iterations is fine, then I'd like to add a check for that and print a warning instead.

@toffaletti
Copy link
Contributor Author

repro:

extern mod extra;
use std::libc::sleep;
use extra::test::BenchHarness;

#[bench]
#[fixed_stack_segment] 
fn sleep_2_seconds(bh: &mut BenchHarness) {
    do bh.iter {
        unsafe { sleep(2); }
    }
}
running 1 test
test sleep_2_seconds ... bench: 0 ns/iter (+/- 0)

test result: ok. 0 passed; 0 failed; 0 ignored; 1 measured

@bluss
Copy link
Member

bluss commented Oct 2, 2013

Duplicate of #9532

@toffaletti
Copy link
Contributor Author

Hah, I swear I searched for this issue before making one. Oh well.

flip1995 pushed a commit to flip1995/rust that referenced this issue Oct 23, 2022
[`collapsible_match`] specify field name when destructuring structs

changelog: [`collapsible_match`] specify field name when destructuring structs

fix rust-lang/rust-clippy#9647

I wasn't the sure about the best way to convey the message in the lint message since it does not use suggestion. Because I liked the former output highlighting both spans, I've left it as before, only modifying the span label.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants