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

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

Lazy loading in rails – Rails Feature

 Lazy loading in rails – Rails Feature ? Lazy loading in rails is the amazing feature provided with rails. In console you might have tried to examine how lazy loading in rails actually works. In this tutorial, we will learn about this Rails - Lazy loading feature with examples. What exactly is Lazy Loading? As the name suggests the data is loaded in lazy manner (Really!) i.e. Your database is queried only when data from the database is required for some kind of manipulation in code. You will get more of this after you read how-to of lazy loading below. How lazy loading works: Whenever you try to get some data from database, For example, users is the database table that you have. And you are querying database to get users having age less than 20. Then, you will write code like, result = User.where("age < 20") when above statement is executed, your database is not queries yet(because the resultant data is not required yet). When you execute following code, records = resu...

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     ...