mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Remove Benchmark
times.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65851 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3710dedc12
commit
20f1c6c185
1 changed files with 8 additions and 18 deletions
|
@ -1,6 +1,4 @@
|
|||
#!/usr/bin/env ruby
|
||||
|
||||
require 'benchmark'
|
||||
# Check performance of fiber creation and transfer.
|
||||
|
||||
def make_link(previous)
|
||||
Fiber.new do
|
||||
|
@ -22,24 +20,16 @@ end
|
|||
|
||||
def run_benchmark(length, repeats, message = :hello)
|
||||
chain = nil
|
||||
|
||||
time = Benchmark.realtime do
|
||||
chain = make_chain(length) do
|
||||
while true
|
||||
Fiber.yield(message)
|
||||
end
|
||||
|
||||
chain = make_chain(length) do
|
||||
while true
|
||||
Fiber.yield(message)
|
||||
end
|
||||
end
|
||||
|
||||
puts "Creating #{fibers} fibers took #{time}..."
|
||||
|
||||
time = Benchmark.realtime do
|
||||
repeats.times do
|
||||
abort "invalid result" unless chain.resume == message
|
||||
end
|
||||
|
||||
repeats.times do
|
||||
abort "invalid result" unless chain.resume == message
|
||||
end
|
||||
|
||||
puts "Passing #{repeats} messages took #{time}..."
|
||||
end
|
||||
|
||||
n = (ARGV[0] || 1000).to_i
|
||||
|
|
Loading…
Reference in a new issue