Skip to main content

Benchmark in Ruby code using bm and bmbm with examples

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.

Comments

Popular posts from this blog

Rails Migration Difference between Text and String

Rails Migration Difference between Text and String ? While working with Rails Migration Difference between Text and String is important to be known to every developer. Columns and their data types are finalized while deciding Table structure. This tutorial will help understand difference between String and Text column type and illustrate how to write Rails Migration implementing the same. You might want to read about database.yml files for specifying database configuration for Rails Application. 1. Concepts When String or Text data type is required?     Whenever you require your column to store information which is lengthy in size (Many characters), you need to consider String or Text data type for the column.     Both of them let you store Many(How Many - will see later) characters Difference between String and Text Considering MySQL database Feature     String     Text Length     1 to 255     ...

Error malloc(): memory corruption nginx with passenger?

Error malloc(): memory corruption nginx with passenger Passenger issue resolving steps :  sudo gem uninstall passenger(uninstall all passenger) sudo gem install passenger sudo passenger-install-nginx-module --auto --auto-download --prefix=/opt/nginx --extra-configure-flags=none Update nginx config file with new passenger version and restart the nginx

rake db migrate with down, up, redo, rollback options in rails

rake db migrate with down, up, redo, rollback options ? rake db migrate - This can be used to migrate your production/test database using various options like up, down, step, redo, version etc. In this tutorial we will learn how all these options can be used with rake tool to migrate the database. What is rake? rake is basically ruby make. i.e. make tool for ruby It has similar functionality to the make tool that you may have used on unix based systems for comopiling running some kind of script. rake allows you to ruby particular task in the environment that you specify. How to Install rake? You can install rake by installing gem 'rake' as, gem install rake Above command will install the latest version of rake tool avaialable. Various rake db migrate commands Operation     Command     Description General     rake db:migrate     This will migrate your database by running migrations that are not run yet Running specific Migra...