/ RAILS

Benchmark in Ruby code using bm and bmbm with examples

In Ruby, you have to perform benchmarking to measure performance of your code. Ruby allows you to do Benchmarking using library called ‘benchmark’

You have to include library before you start with Benchmarking.

Let us see example of how you can perform benchmarking in Ruby.

require 'benchmark'

It will allow you to use Benchmark library.

Now, suppose you have two code blocks which you have to compare,

Let us say we have array a and b,

>
a = []
$ b = []

Now, you have to push the element 5 into these arrays. Let’s perform this operation 1000000 times so that it will take significant amount of time by which we can compare these two operations or code blocks.

Code block 1:

1000000.times{ a=[]; a << 5}

Code block 2:

1000000.times{ b=[]; a.push(5)}

1. Benchmark bm method

Benchmark.bm do |performance|
  performance.report("Insert"){ 1000000.times{ a=[]; a << 5}}
  performance.report("Push"){ 1000000.times{ a=[]; a.push(5)}}
end

Output

=>

user     system      total        real

Insert  0.190000   0.000000   0.190000 (  0.197922)

Push  0.210000   0.000000   0.210000 (  0.208997)

So, the Benchmarking performance shows user time, system time, total time and real time taken by code block to execute. As we reported performance of two blocks the result was performance of two blocks.

From the result it is clear that array insert («) is faster than array push.

Find more about array insert and array push.

You can also perform benchmarking as,

2. Benchmark bmbm method

Benchmark.bmbm do |performance|
  performance.report("Insert"){ 1000000.times{ a=[]; a << 5}}
  performance.report("Push"){ 1000000.times{ a=[]; a.push(5)}}
end

Output

=>
Rehearsal ------------------------------------------

Insert   0.200000   0.000000   0.200000 (  0.201332)

Push     0.200000   0.000000   0.200000 (  0.201211)

--------------------------------- total: 0.400000sec

user     system      total        real

Insert   0.180000   0.000000   0.180000 (  0.176327)

Push     0.200000   0.000000   0.200000 (  0.199285)

=> [  0.180000   0.000000   0.180000 (  0.176327)

,   0.200000   0.000000   0.200000 (  0.199285)]

Basically, bmbm is used so that Garbage Collection that takes place before each operation should not affect the result and we should get consistent result.

Conclusion

  • bmbm performs rehearsal for the first time and then performs actual operation so that we can get consistent results.
  • So, by now you would be comfortable with measuring performance of various code blocks if you want.
akshay

Akshay Mohite

Hi there! I am a Ruby on Rails & ReactJS Enthusiast, building some cool products at DTree Labs.

Read More
Buy me a coffee