Brook Heisler
Brook Heisler
Hello! I believe you'll need to add a dev-dependency on tokio in order to fix up the broken doctests.
Hey, thanks for the patience. I've been on vacation for a week and a half or so. Yeah, I'd love to support WASM in Criterion.rs! I have absolutely no idea...
That's probably fine. I assume that if you disable the security feature, browsers are probably just forwarding the call to the same OS time API that Rust `libstd` (and thus...
OK, I may have inadvertently mislead you folks. The timer-resolution issue is likely to be a problem, but it's not the main problem. Criterion.rs is already designed to minimize the...
#266 might be relevant here - if all of the HTML generation and plot-rendering stuff were done by a cargo plugin, a hypothetical WASM port would only have to handle...
Hello! I cloned your repository and ran your benchmarks and they seem to run about as well as I'd expect. They're defined incorrectly though: ``` c.bench_function("bench_slug", |b| { b.iter(|| black_box(slugify(black_box("My...
Thanks for the issue report, and thanks for your patience. Could you try running it with debug output enabled (https://bheisler.github.io/criterion.rs/book/criterion_rs.html#debug-output) and then share the gnuplot files that are generated? Also,...
Yes, I've seen that talk as well. I also hadn't realized that memory layout was so unstable. Unfortunately, as you say, this is indeed out of scope for Criterion.rs. Stabilizer...
I wasn't aware of those crates, but yeah, those should make it pretty easy to add random stack offsets. I'll reopen this to investigate whether that would be useful, but...
My intention was actually to move away from relying on Gnuplot and make Plotters the default plotting backend; that way users don't need to install Gnuplot separately, but that's not...