Antonio Cangiano published Ruby Benchmark Suite results for several
Ruby implementations today.
http://programmingzen.com/2010/07/19/the-great-ruby-shootout-july-2010/
http://github.com/acangiano/ruby-benchmark-suite
If you want to run these benchmarks on your copy of RBS and you use
rvm, here's what you need to know.
The rake gem doesn't fully work yet in MagLev, so it's best to control
the tests using MRI.
You should cd to your RBS benchmark directory first. Then execute the
following:
rvm use system
export MAGLEV_HOME=~/.rvm/rubies/maglev-23832 # location of your
MagLev version
export PATH=$MAGLEV_HOME/bin:$PATH
maglev start-
bench # write
tranlogs to /dev/null instead of disk
export VM=$MAGLEV_HOME/bin/maglev-ruby # use MagLev as
the VM under test
rake bench
rake bench:to_csv
maglev stop