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