* benchmark/bm_loop_generator.rb: added.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
028919d222
commit
487a7da22d
@ -1,3 +1,7 @@
|
||||
Sat Aug 25 00:49:44 2007 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* benchmark/bm_loop_generator.rb: added.
|
||||
|
||||
Sat Aug 25 00:22:31 2007 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* prelude.rb: added. run this script on startup.
|
||||
|
14
benchmark/bm_loop_generator.rb
Normal file
14
benchmark/bm_loop_generator.rb
Normal file
@ -0,0 +1,14 @@
|
||||
max = 600000
|
||||
|
||||
if defined? Fiber
|
||||
gen = (1..max).each
|
||||
loop do
|
||||
gen.next
|
||||
end
|
||||
else
|
||||
require 'generator'
|
||||
gen = Generator.new((0..max))
|
||||
while gen.next?
|
||||
gen.next
|
||||
end
|
||||
end
|
Loading…
x
Reference in New Issue
Block a user