Re: [jruby-dev] Jruby+Truffle fibonacci benchmark
Thanks very much for getting that working - really appreciate it. > (Still only passing about half the RubySpec, but still impressive) It’s just over 86% of language specs now! Chris
[jruby-dev] Jruby+Truffle fibonacci benchmark
Hi all! I tried the new option for jruby+truffle in RVM: rvm mount -r http://lafo.ssw.uni-linz.ac.at/graalvm/jruby-dist-9000+graal-macosx-x86_64.dev-bin.tar.gz -n jruby-graal I ran the following version of fibonacci: def fib(n) n <= 2 ? 1 : fib(n-2) + fib(n-1) end fib(40) Results: MRI 2.