Created
August 9, 2024 08:36
-
-
Save hfm/b5d13d8bad2257c2488f441ed153b25e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'benchmark' | |
iterations = 1_000_000_000 | |
Benchmark.bm do |x| | |
x.report("Float:") do | |
iterations.times do | |
1.0 > 1.0 | |
end | |
end | |
x.report("Integer:") do | |
iterations.times do | |
1 > 1 | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❯ ruby bench.rb | |
user system total real | |
Float: 19.045433 0.062736 19.108169 ( 19.177244) | |
Integer: 17.622470 0.063646 17.686116 ( 17.700208) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment