the8472
the8472
Windows supports IO priorities, have you tried setting qbt to a lower one? I think lowering the process CPU priority (can be done with the task manager or `start.exe`) also...
Other than the std benches (which aren't great) we don't have anything automated to assess runtime performance. In the rustc-perf suite check and doc builds are the closest since they...
It can be set to run a subset of the benchmarks, e.g. the serde ones. https://github.com/rust-lang/rustc-perf/tree/master/collector#benchmarking-options Running the site locally should work as long as it uses the same DB...
Some changes were reverted, let's get new perf results. @bors try @rust-timer queue
> I have benchmarked this locally, using criterion, and have seen meaningful performance improvements. I can add those outputs to this if you'd like, but am guessing that the perf...
Note that the notion of "unsafe" or "insecure" depends on which security properties you need. E.g. algorithms vulnerable to timing attacks are still useful for offline uses. Even MD5 is...
> I think if you were to take a straw poll among cryptographers as to whether MD5 is "broken" or "insecure", the answer would overwhelmingly be yes. And what if...
Seeking is also very useful for parallel processing
I've found that https://peterreid.github.io/chacha/chacha/index.html provides some desirable features: * in-place XOR * seeking * various nonce and block counter size tradeoffs
Why not use `vec.into_iter().filter_map(...).collect()`?