You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]fnfoo_bench(b:&mutBencher){
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]fnfoo_bench(_b:&mutBencher){// 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.
The text was updated successfully, but these errors were encountered:
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....
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 theb.iter
method: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 noBencher
parameter.Right now if we do this, it just prints
bench: 0 ns/iter (+/- 0)
, even if the function is actually quite slow.The text was updated successfully, but these errors were encountered: