2018-07-08 16:28:34 +00:00
|
|
|
# while loop cost is not removed due to benchmark_driver.gem's limitation
|
2018-07-08 15:12:24 +00:00
|
|
|
benchmark:
|
|
|
|
vm1_yield: |
|
|
|
|
def m
|
|
|
|
i = 0
|
2018-07-08 16:28:34 +00:00
|
|
|
while i<30_000_000
|
2018-07-08 15:12:24 +00:00
|
|
|
i += 1
|
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
m{}
|
|
|
|
loop_count: 1
|