From: ko1@... Date: 2016-07-28T20:39:31+00:00 Subject: [ruby-core:76603] [Ruby trunk Bug#10212] MRI is not for lambda calculus Issue #10212 has been updated by Koichi Sasada. [Omake](http://www.urbandictionary.com/define.php?term=omake) ``` target 0: ruby_2_0 (ruby 2.0.0p648 (2015-12-16 revision 53161) [x86_64-linux]) at "~/ruby/install/ruby_2_0_0/bin/ruby" target 1: ruby_2_1 (ruby 2.1.10p492 (2016-04-22 revision 54691) [x86_64-linux]) at "~/ruby/install/ruby_2_1/bin/ruby" target 2: ruby_2_2 (ruby 2.2.6p344 (2016-07-12 revision 55637) [x86_64-linux]) at "~/ruby/install/ruby_2_2/bin/ruby" target 3: ruby_2_3 (ruby 2.3.2p139 (2016-07-11 revision 55635) [x86_64-linux]) at "~/ruby/install/ruby_2_3/bin/ruby" target 4: trunk (ruby 2.4.0dev (2016-07-28 trunk 55767) [x86_64-linux]) at "~/ruby/install/trunk/bin/ruby" ... ----------------------------------------------------------- raw data: [["app_lc_fizzbuzz", [[101.28207302466035, 107.06514655612409, 103.87018677964807], [85.14830217137933, 88.05021686293185, 83.31006827391684], [55.600421745330095, 53.487896678969264, 56.63330595381558], [56.329297533258796, 55.247374195605516, 56.85174832865596], [35.20849320106208, 35.567391984164715, 38.8587267305702]]]] Elapsed time: 1012.521038421 (sec) ----------------------------------------------------------- benchmark results: minimum results in each 3 measurements. Execution time (sec) name ruby_2_0 ruby_2_1 ruby_2_2 ruby_2_3 trunk app_lc_fizzbuzz 101.282 83.310 53.488 55.248 35.209 Speedup ratio: compare with the result of `ruby_2_0' (greater is better) name ruby_2_1 ruby_2_2 ruby_2_3 trunk app_lc_fizzbuzz 1.216 1.894 1.833 2.877 ``` ---------------------------------------- Bug #10212: MRI is not for lambda calculus https://bugs.ruby-lang.org/issues/10212#change-59825 * Author: Koichi Sasada * Status: Open * Priority: Normal * Assignee: Koichi Sasada * ruby -v: ruby 2.2.0dev (2014-08-21 trunk 47241) [x86_64-linux] * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN ---------------------------------------- # title is joke. I added benchmark/bm_lc_fizzbuzz.rb which solve fizz buzz program by lambda calculus. http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=47447 (This program is closly described by ["Understanding Computation"] (http://computationbook.com/) by Tom Stuart) ([Japanese translation of this book] (http://www.oreilly.co.jp/books/9784873116976/) will be published soon) The results of this program are: ``` jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_65-b32 [linux-amd64] real 0m26.648s user 0m30.091s sys 0m4.369s mruby 89e9df26819b9555fb790a16662f4ad2b9cbb2e2 real 0m27.145s user 0m27.110s sys 0m0.012s ruby 2.2.0dev (2014-08-21 trunk 47241) [x86_64-linux] real 1m54.648s user 1m54.512s sys 0m0.028s ``` It is clear that MRI is too slow. I haven't dig details, but maybe it is because of GC perforamance. Because Proc (and Env) objects are wb-unprotected, such objects are marked on every minor GC. This problem is not critical because MRI is not for lambda calculus :p but we can improve about it. -- https://bugs.ruby-lang.org/ Unsubscribe: