[Awesome Ruby Gem] Use benchmark-ips gem to benchmark how iterations per second enhancement
benchmark-ips
An iterations per second enhancement to Benchmark.
FEATURES/PROBLEMS:
benchmark/ips - benchmarks a blocks iterations/second. For short snippits of code, ips automatically figures out how many times to run the code to get interesting data. No more guessing at random iteration counts!
Installation
You can install it as a gem:
1 | gem install benchmark-ips |
or add it into a Gemfile (Bundler):
1 | # Gemfile |
Then, run bundle install
.
1 | bundle install |
Usages
SYNOPSIS:
1 | require 'benchmark/ips' |
This will generate the following report:
1 | Calculating ------------------------------------- |
Benchmark/ips will report the number of iterations per second for a given block of code. When analyzing the results, notice the percent of standard deviation which tells us how spread out our measurements are from the average. A high standard deviation could indicate the results having too much variability.
One benefit to using this method is benchmark-ips automatically determines the data points for testing our code, so we can focus on the results instead of guessing iteration counts as we do with the traditional Benchmark library.
Custom Suite
Pass a custom suite to disable garbage collection during benchmark:
1 | require 'benchmark/ips' |
Independent benchmarking
If you are comparing multiple implementations of a piece of code you may want to benchmark them in separate invocations of Ruby so that the measurements are independent of each other. You can do this with the hold!
command.
1 | Benchmark.ips do |x| |
This will run only one benchmarks each time you run the command, storing results in the specified file. The file is deleted when all results have been gathered and the report is shown.
Alternatively, if you prefer a different approach, the save! command is available. Examples for hold! and save! are available in the examples/ directory.
Multiple iterations
In some cases you may want to run multiple iterations of the warmup and calculation stages and take only the last result for comparison. This is useful if you are benchmarking with an implementation of Ruby that optimizes using tracing or on-stack-replacement, because to those implementations the calculation phase may appear as new, unoptimized code.
You can do this with the iterations option, which by default is 1. The total time spent will then be iterations * warmup + iterations * time seconds.
1 | Benchmark.ips do |x| |
Online sharing
If you want to quickly share your benchmark result with others, run you benchmark with SHARE=1 argument. For example: SHARE=1 ruby my_benchmark.rb
.
Result will be sent to benchmark.fyi and benchmark-ips will display the link to share the benchmark’s result.
If you want to run your own instance of benchmark.fyi and share it to that instance, you can do this: SHARE_URL=https://ips.example.com ruby my_benchmark.rb
Advanced Statistics
By default, the margin of error shown is plus-minus one standard deviation. If a more advanced statistical test is wanted, a bootstrap confidence interval can be calculated instead. A bootstrap confidence interval has the advantages of arguably being more mathematically sound for this application than a standard deviation, it additionally produces an error for relative slowdowns, which the standard deviation does not, and it is arguably more intuitive and actionable.
When a bootstrap confidence interval is used, a median of the interval is used rather than the mean of the samples, which is what you get with the default standard deviation.
The bootstrap confidence interval used is the one described by Tomas Kalibera. Note that for this technique to be valid your benchmark should have reached a non-periodic steady state with statistically independent samples (it should have warmed up) by the time measurements start.
Using a bootstrap confidence internal requires that the ‘kalibera’ gem is installed separately. This gem is not a formal dependency, as by default it is not needed.
1 | gem install kalibera |
1 | Benchmark.ips do |x| |
References
[2] benchmark-ips | RubyGems.org | your community gem host - https://rubygems.org/gems/benchmark-ips
[3] Software Development Team: libkalibera - https://soft-dev.org/src/libkalibera/
[4] kalibera | RubyGems.org | your community gem host - https://rubygems.org/gems/kalibera