diff options
author | Takashi Kokubun <[email protected]> | 2019-09-26 22:13:24 +0900 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2019-09-26 22:13:31 +0900 |
commit | 41e3c204fd83660a243fa61f91aeda2a78817a97 (patch) | |
tree | cef6a18e1f11396ffc0097a17e3333a21145bae4 /benchmark/lib | |
parent | 1070456bb8ddf48be7b601daa024fe372c3c25c1 (diff) |
Reduce ISeq size of mjit_exec benchmark
to avoid unwanted memory pressure
Diffstat (limited to 'benchmark/lib')
-rw-r--r-- | benchmark/lib/benchmark_driver/runner/mjit_exec.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/benchmark/lib/benchmark_driver/runner/mjit_exec.rb b/benchmark/lib/benchmark_driver/runner/mjit_exec.rb index 7477fa1830..9f7c8c8af3 100644 --- a/benchmark/lib/benchmark_driver/runner/mjit_exec.rb +++ b/benchmark/lib/benchmark_driver/runner/mjit_exec.rb @@ -140,13 +140,13 @@ class BenchmarkDriver::Runner::MjitExec def vm t = Process.clock_gettime(Process::CLOCK_MONOTONIC) i = 0 - while i < 10000 - % (loop_count / 10000).times do |i| + while i < <%= loop_count / 1000 %> + % 1000.times do |i| a<%= i % num_methods %> % end i += 1 end - % (loop_count % 10000).times do |i| + % (loop_count % 1000).times do |i| a<%= i % num_methods %> % end Process.clock_gettime(Process::CLOCK_MONOTONIC) - t @@ -177,13 +177,13 @@ class BenchmarkDriver::Runner::MjitExec def vm t = Process.clock_gettime(Process::CLOCK_MONOTONIC) i = 0 - while i < 10000 - % (loop_count / 10000).times do |i| + while i < <%= loop_count / 1000 %> + % 1000.times do |i| a<%= i % num_methods %> % end i += 1 end - % (loop_count % 10000).times do |i| + % (loop_count % 1000).times do |i| a<%= i % num_methods %> % end Process.clock_gettime(Process::CLOCK_MONOTONIC) - t @@ -214,13 +214,13 @@ class BenchmarkDriver::Runner::MjitExec def jit t = Process.clock_gettime(Process::CLOCK_MONOTONIC) i = 0 - while i < 10000 - % (loop_count / 10000).times do |i| + while i < <%= loop_count / 1000 %> + % 1000.times do |i| a<%= i % num_methods %> % end i += 1 end - % (loop_count % 10000).times do |i| + % (loop_count % 1000).times do |i| a<%= i % num_methods %> % end Process.clock_gettime(Process::CLOCK_MONOTONIC) - t |