Ruby Long Running Benchmarks


Benchmark Types
Show the last
Results
Compare

Vm1 yield Graph (Iteration per second)

Vm1 yield Graph (RSS memory usage)

Vm1 yield Script View on Github

# while loop cost is not removed due to benchmark_driver.gem's limitation
benchmark:
  vm1_yield: |
    def m
      i = 0
      while i<30_000_000
        i += 1
        yield
      end
    end

    m{}
loop_count: 1