|
|
|
|
|
by mbrubeck
3397 days ago
|
|
In other Rust/benchmarksgame news, I just submitted a simple fix to the Rust program for "reverse-complement" that makes it faster than the fastest C++ program, on my computer. The old version was spending 2/3 of its time just reading the input into memory, because it wasn't allocating a large enough buffer up front. https://github.com/TeXitoi/benchmarksgame-rs/pull/44 I'm also working on some additional changes that make it even faster than the C version (again, on my computer) by improving how it divides work across CPUs: https://github.com/TeXitoi/benchmarksgame-rs/pull/46 These improved Rust programs have not yet been added to the benchmarksgame site. Previous entries are ranked at: http://benchmarksgame.alioth.debian.org/u64q/performance.php... Minor improvements to the Rust programs for "mandelbrot" and "binary-trees" are also awaiting review! |
|