IronPython 2.0 executes code slowly. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:00:32Z http://stackoverflow.com/feeds/question/898993 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/898993/ironpython-2-0-executes-code-slowly 0 IronPython 2.0 executes code slowly. logan 2009-05-22T17:25:53Z 2009-06-04T16:21:35Z <p>It seems that IronPython 2.0.1 executes a script file about 3x slower than IronPython 1.x. I'm not convinced that it isn't something I'm doing so I'm wondering if others have had a similar experience. </p> <p>I have a 200k python script that takes 5 seconds to execute from a file on IP 1.x and nearly 18 seconds in IP 2.0.1!</p> http://stackoverflow.com/questions/898993/ironpython-2-0-executes-code-slowly/899144#899144 0 Answer by Kev for IronPython 2.0 executes code slowly. Kev 2009-05-22T17:57:58Z 2009-05-22T17:57:58Z <p>Might be worth running through a profiler to see where the bottle necks are?</p> http://stackoverflow.com/questions/898993/ironpython-2-0-executes-code-slowly/901860#901860 0 Answer by wilberforce for IronPython 2.0 executes code slowly. wilberforce 2009-05-23T16:30:13Z 2009-05-23T16:30:13Z <p>There are definitely some things that are much slower in IronPython than they are in Python. Often this is because you're hitting a weird corner case in the implementation. It's worth trying to reduce it down to a very simple script that exhibits the performance difference and sending that to the <a href="http://lists.ironpython.com/listinfo.cgi/users-ironpython.com" rel="nofollow">IronPython mailing list</a> - the devs are very responsive. </p> <p>There's been a series of interesting blog posts about IronPython performance recently - <a href="http://ironpython-urls.blogspot.com/2009/05/python-jython-and-ironpython.html" rel="nofollow">this is a good overview</a>. The summary is that you can get very good performance, once you avoid the pitfalls, and the IP team are very interested in finding out about these problems and fixing them quickly. Narrowing down a repro to find the pitfall is the hardest part - once you've worked out what triggers the behaviour it's generally easy to work around.</p> http://stackoverflow.com/questions/898993/ironpython-2-0-executes-code-slowly/918533#918533 0 Answer by DSO for IronPython 2.0 executes code slowly. DSO 2009-05-27T23:44:24Z 2009-05-27T23:44:24Z <p>I also had a similar issue when I started using IronPython 2.0. The problem for me was the dismal startup time for the DLR. Once the runtime is loaded the script performance is reasonably fast.</p> <p>To reduce the runtime startup time, you can try <a href="http://stackoverflow.com/questions/382487/how-do-i-install-ironpython-2-0-with-ngened-binaries">NGEN'ing the binaries</a>. This reduced the startup time around 60% for me.</p> <p>Even with this fix, it is still not that fast relatively speaking. If your script is not doing much the startup will still take a significant portion of the overall time. Hopefully the DLR team will fix the startup performance issues soon.</p> http://stackoverflow.com/questions/898993/ironpython-2-0-executes-code-slowly/924632#924632 0 Answer by daftspaniel for IronPython 2.0 executes code slowly. daftspaniel 2009-05-29T06:15:25Z 2009-05-29T06:15:25Z <p>Hi Logan,</p> <p>Does your timings include startup time? IronPython 2.6 Beta has radical improvements to startup time and code compilation/execution. Suggest you try that release if you can.</p> <p>Cheers, Davy</p> http://stackoverflow.com/questions/898993/ironpython-2-0-executes-code-slowly/951609#951609 0 Answer by Caglar Toklu for IronPython 2.0 executes code slowly. Caglar Toklu 2009-06-04T16:21:35Z 2009-06-04T16:21:35Z <p>You can read the article <a href="http://www.hardcodet.net/2008/12/ironpython-performance-with-imports" rel="nofollow">IronPython: Reusing Import Symbols to Avoid Performance Hits</a> that can make the embedded scenarios run faster.</p>