Update benchmark to new promises

This commit is contained in:
Petr Chalupa 2017-02-23 19:22:38 +01:00
parent ba0ec3be63
commit 860dcae582
1 changed files with 17 additions and 11 deletions

View File

@ -2,7 +2,9 @@
require 'benchmark/ips'
require 'concurrent'
require 'concurrent-edge'
raise 'concurrent-ext not loaded' if Concurrent.on_cruby? && Concurrent.c_extensions_loaded?
scale = 1
time = 10 * scale
@ -10,20 +12,24 @@ warmup = 2 * scale
warmup *= 10 if Concurrent.on_jruby?
Benchmark.ips(time, warmup) do |x|
x.report('flat-old') { Concurrent::Promise.execute { 1 }.flat_map { |v| Concurrent::Promise.execute { v + 2 } }.value! }
x.report('flat-new') { Concurrent::Promises.future(:fast) { 1 }.then { |v| Concurrent::Promises.future(:fast) { v + 2 } }.flat.value! }
x.report('flat-old') do
Concurrent::Promise.execute { 1 }.flat_map { |v| Concurrent::Promise.execute { v + 2 } }.value!
end
x.report('flat-new') do
Concurrent::Promises.future(:fast) { 1 }.then { |v| Concurrent::Promises.future(:fast) { v + 2 } }.flat.value!
end
x.compare!
end
Benchmark.ips(time, warmup) do |x|
x.report('status-old') { f = Concurrent::Promise.execute { nil }; 100.times { f.complete? } }
x.report('status-new') { f = Concurrent::Promises.future(:fast) { nil }; 100.times { f.completed? } }
x.report('status-new') { f = Concurrent::Promises.future(:fast) { nil }; 100.times { f.resolved? } }
x.compare!
end
Benchmark.ips(time, warmup) do |x|
of = Concurrent::Promise.execute { 1 }
nf = Concurrent::Promises.succeeded_future(1, :fast)
nf = Concurrent::Promises.fulfilled_future(1, :fast)
x.report('value-old') { of.value! }
x.report('value-new') { nf.value! }
x.compare!
@ -31,7 +37,7 @@ end
Benchmark.ips(time, warmup) do |x|
x.report('graph-old') do
head = Concurrent::Promise.execute { 1 }
head = Concurrent::Promise.fulfill(1)
10.times do
branch1 = head.then(&:succ)
branch2 = head.then(&:succ).then(&:succ)
@ -40,7 +46,7 @@ Benchmark.ips(time, warmup) do |x|
head.value!
end
x.report('graph-new') do
head = Concurrent::Promises.succeeded_future(1, :fast)
head = Concurrent::Promises.fulfilled_future(1, :fast)
10.times do
branch1 = head.then(&:succ)
branch2 = head.then(&:succ).then(&:succ)
@ -52,15 +58,15 @@ Benchmark.ips(time, warmup) do |x|
end
Benchmark.ips(time, warmup) do |x|
x.report('immediate-old') { Concurrent::Promise.execute { nil }.value! }
x.report('immediate-new') { Concurrent::Promises.succeeded_future(nil, :fast).value! }
x.report('immediate-old') { Concurrent::Promise.fulfill(nil).value! }
x.report('immediate-new') { Concurrent::Promises.fulfilled_future(nil, :fast).value! }
x.compare!
end
Benchmark.ips(time, warmup) do |x|
of = Concurrent::Promise.execute { 1 }
nf = Concurrent::Promises.succeeded_future(1, :fast)
x.report('then-old') { 100.times.reduce(of) { |nf, _| nf.then(&:succ) }.value! }
x.report('then-new') { 100.times.reduce(nf) { |nf, _| nf.then(&:succ) }.value! }
nf = Concurrent::Promises.fulfilled_future(1, :fast)
x.report('then-old') { 50.times.reduce(of) { |nf, _| nf.then(&:succ) }.value! }
x.report('then-new') { 50.times.reduce(nf) { |nf, _| nf.then(&:succ) }.value! }
x.compare!
end