From 820ad9cb1d72d0897b73dae282df3793814b27e8 Mon Sep 17 00:00:00 2001 From: k0kubun Date: Sun, 8 Jul 2018 16:28:34 +0000 Subject: benchmark/vm1_*.yml: abstract away the while loop benchmark/driver.rb had removed the cost for while loop in benchmark/bm_vm1_*.rb, and benchmark_driver.gem can achieve the same thing with `loop_count`. But unfortunately current benchmark_driver.gem can't solve it only for vm1_yield.yml... git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- benchmark/vm1_gc_short_with_long.yml | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) (limited to 'benchmark/vm1_gc_short_with_long.yml') diff --git a/benchmark/vm1_gc_short_with_long.yml b/benchmark/vm1_gc_short_with_long.yml index f173ec0ca5..c731aae548 100644 --- a/benchmark/vm1_gc_short_with_long.yml +++ b/benchmark/vm1_gc_short_with_long.yml @@ -1,16 +1,13 @@ +prelude: | + long_lived = Array.new(1_000_000){|i| "#{i}"} + GC.start + GC.start benchmark: vm1_gc_short_with_long: | - long_lived = Array.new(1_000_000){|i| "#{i}"} - GC.start - GC.start - i = 0 - while i<30_000_000 # while loop 1 - a = '' # short-lived String - b = '' - c = '' - d = '' - e = '' - f = '' - i+=1 - end -loop_count: 1 + a = '' # short-lived String + b = '' + c = '' + d = '' + e = '' + f = '' +loop_count: 30000000 -- cgit v1.2.3