rust-lang / rfcs

RFCs for changes to Rust
https://rust-lang.github.io/rfcs/
Apache License 2.0
5.97k stars 1.57k forks source link

More and better benchmarks are needed #627

Closed steveklabnik closed 6 years ago

steveklabnik commented 9 years ago

Issue by cmr Monday Jul 01, 2013 at 18:50 GMT

For earlier discussion, see https://github.com/rust-lang/rust/issues/7532

This issue was labelled with: A-an-interesting-project, A-benchmarks, A-testsuite, E-easy, I-wishlist in the Rust repository


We have few good, solid benchmarks that stress a single part of the codegen or libraries. These are necessary to be able to be able to easily spot perfomance regressions, as well as have a good quantitative data about Rust's performance.

Benchmarks should cover both space and time characteristics, and should use the built-in bench runner where possible. Some ideas:

An important note: these benchmarks aren't intended for comparison to other languages (although they could be useful for that in the future), but for tracking the performance of Rust.

Centril commented 6 years ago

Today we have criterion.rs and other libs. So I'm closing this.