Skip to content

Instantly share code, notes, and snippets.

@mrinterweb
Created September 26, 2024 00:39
Show Gist options
  • Save mrinterweb/eca5c792fd3a4c966316d87c7a308c4b to your computer and use it in GitHub Desktop.
Save mrinterweb/eca5c792fd3a4c966316d87c7a308c4b to your computer and use it in GitHub Desktop.
Ruby proc, block, lambda benchmark
require 'benchmark/ips'
def b = yield() + 1
l = -> (x) { x + 1 }
p = proc { |x| x + 1 }
Benchmark.ips do |x|
x.report('block') { b { 1 } }
x.report('lambda') { l.call(1) }
x.report('proc') { p.call(1) }
x.compare!
end
Warming up --------------------------------------
block 2.657M i/100ms
lambda 2.589M i/100ms
proc 2.561M i/100ms
Calculating -------------------------------------
block 26.686M (± 3.5%) i/s - 135.499M in 5.083903s
lambda 26.151M (± 3.9%) i/s - 132.021M in 5.056495s
proc 25.334M (± 3.9%) i/s - 128.059M in 5.062711s
Comparison:
block: 26686459.3 i/s
lambda: 26150966.6 i/s - same-ish: difference falls within error
proc: 25334065.2 i/s - same-ish: difference falls within error
Basically the same performance.
These results are with ruby 3.3.5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment