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_length.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'benchmark/vm1_length.yml') diff --git a/benchmark/vm1_length.yml b/benchmark/vm1_length.yml index 030b6c510c..a18e2ca2e6 100644 --- a/benchmark/vm1_length.yml +++ b/benchmark/vm1_length.yml @@ -1,11 +1,8 @@ +prelude: | + a = 'abc' + b = [1, 2, 3] benchmark: vm1_length: | - a = 'abc' - b = [1, 2, 3] - i = 0 - while i<30_000_000 # while loop 1 - i += 1 - a.length - b.length - end -loop_count: 1 + a.length + b.length +loop_count: 30000000 -- cgit v1.2.3