forked from bheisler/criterion.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change integrates the pure Rust plotting crate, Plotters, to Criterion. This will allows the user doesn't relies on Gnuplot to generate the benchmark data visualization. After the change, Criterion won't have any change unless: 1. Gnuplot is not installed: Preivously we completely disable HTML report, now we using Plotters to generate the report visualization instead. 2. If `--prefer-plotters` is passed to benchmark, Criterion will prefer Plotters based plotting backend. Additional Notes: 1. This change refactors the plotting code to use dynamic dispatch 2. The Plotters based plotting backend is implemented 3. Commandline options is added
- Loading branch information
Showing
17 changed files
with
1,762 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.criterion | ||
Cargo.lock | ||
target | ||
|
||
**/.*.sw* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.