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_blockparam_pass.yml | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) (limited to 'benchmark/vm1_blockparam_pass.yml') diff --git a/benchmark/vm1_blockparam_pass.yml b/benchmark/vm1_blockparam_pass.yml index 951518b5f6..416170800e 100644 --- a/benchmark/vm1_blockparam_pass.yml +++ b/benchmark/vm1_blockparam_pass.yml @@ -1,16 +1,13 @@ -benchmark: - vm1_blockparam_pass: | - def bp_yield - yield - end +prelude: | + def bp_yield + yield + end - def bp_pass &b - bp_yield &b - end + def bp_pass &b + bp_yield &b + end +benchmark: + vm1_blockparam_pass: 'bp_pass{} - i = 0 - while i<30_000_000 # while loop 1 - i += 1 - bp_pass{} - end -loop_count: 1 +' +loop_count: 30000000 -- cgit v1.2.3