Chris Barrick

Results 15 comments of Chris Barrick

It seems to me that a GUI would be outside the scope of this project. You know the old unix philosophy "do exactly one thing and do it well". I...

I ran into this same problem. Deleting a directory that contains the output of sphinx-autogen/autosummary causes sphinx-autobuild to enter a rebuild loop. One rebuild is triggered per generated file. The...

> for example what's the benefit here of inlining It allows cross-crate inlining without LTO. IIUC, by default, an rlib will contain an optimized representation of the source code for...

In my experience, it seems like the benchmarks are being run, but only a single sample of each. I can verify this be having a single benchmark that is expected...

I did some debugging on this. It turns out that `cargo bench --bench=foo` will call you benchmark like: ./target/bench/deps/foo --bench But `cargo flamegraph --bench=foo` will call your benchmark like: ./target/bench/deps/foo...