Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toch/benchmark-lab
A lab for serious benchmark of Ruby code.
https://github.com/toch/benchmark-lab
Last synced: 17 days ago
JSON representation
A lab for serious benchmark of Ruby code.
- Host: GitHub
- URL: https://github.com/toch/benchmark-lab
- Owner: toch
- License: gpl-3.0
- Created: 2014-12-19T21:48:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-20T17:08:21.000Z (over 8 years ago)
- Last Synced: 2024-04-23T23:55:35.303Z (7 months ago)
- Language: Ruby
- Homepage:
- Size: 170 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![PullReview stats](https://www.pullreview.com/github/toch/benchmark-lab/badges/master.svg?)](https://www.pullreview.com/github/toch/benchmark-lab/reviews/master)
# Benchmark Lab
Run Real Experiment and Calculate Non-Parametric Statistics.
## Requirements
The ruby version required is at least `2.1`.
## Installation
Install it yourself as:
$ gem install benchmark-lab
## Usage
There are two ways to use it:
1. classic: as Benchmark.bm does
2. iterative: collects and measures separately, stores into different JSON
files, then put everything together and rank them### Classic Usage
```Ruby
require 'benchmark/lab'n = 5_000_000
cases = {
'for:' => proc { for i in 1..n; a = "1"; end },
'times:' => proc { n.times do ; a = "1"; end },
'upto:' => proc { 1.upto(n) do ; a = "1"; end }
}# How many times do you run the function
# 20 is a good minimum number
nbr_of_samples = 20Benchmark.experiment(nbr_of_samples) do |x|
cases.each { |label, blk| x.report(label, &blk) }
end
```The output looks like the following:
```
user system total real
for: [0.77,0.77,0.78] [0.00,0.00,0.00] [0.77,0.77,0.78] [0.77,0.77,0.78]
times: [0.74,0.74,0.74] [0.00,0.00,0.00] [0.74,0.74,0.74] [0.74,0.74,0.74]
upto: [0.75,0.75,0.75] [0.00,0.00,0.00] [0.75,0.75,0.75] [0.75,0.75,0.75]
The best "times:" is significantly (95%) better (total time).
```### Iterative Usage
```Ruby
require 'benchmark/lab'n = 5_000_000
# How many times do you run the function
# 20 is a good minimum number
nbr_of_samples = 20jsons = []
jsons << Benchmark.observe_and_summarize(nbr_of_samples) do |x|
x.report('for') { for i in 1..n; a = "1"; end }
endjsons << Benchmark.observe_and_summarize(nbr_of_samples) do |x|
x.report('times') { n.times do ; a = "1"; end }
endjsons << Benchmark.observe_and_summarize(nbr_of_samples) do |x|
x.report('upto') { 1.upto(n) do ; a = "1"; end }
endbest, is_h0_rejected = Benchmark.aggregate_and_rank(jsons.map { |json| JSON.parse(json) })
puts best
puts is_h0_rejected
```The output looks like the following:
```
{"name"=>"total", "sample"=>[0.6899999999999977, 0.6899999999999977, 0.6899999999999977, 0.6899999999999977, 0.6900000000000013, 0.6900000000000048, 0.6900000000000048, 0.6999999999999957, 0.6999999999999957, 0.6999999999999957, 0.6999999999999957, 0.6999999999999957, 0.6999999999999993, 0.6999999999999993, 0.7000000000000028, 0.7000000000000028, 0.7000000000000028, 0.7000000000000028, 0.7000000000000028, 0.7000000000000028], "sample_size"=>20, "minimum"=>0.6899999999999977, "maximum"=>0.7000000000000028, "first_quartile"=>0.690000000000003, "third_quartile"=>0.7000000000000028, "median"=>0.6999999999999957, "interquartile_range"=>0.009999999999999787, "label"=>"upto"}
true
```## Ideas
* compare two different implementations of a same function
1. get the stats, then compare
2. use git (commit, branch)
3. use tests to check no performance regression at the same time
4. annotate the tests you want to check
* decide the sample size automatically (based on the power you want to reach)
* explain correctly why we should do that## Contributing
1. Fork it ( https://github.com/toch/benchmark-lab/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request