vote up 0 vote down star

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.

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!

flag

5 Answers

vote up 0 vote down check

Hi Logan,

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.

Cheers, Davy

link|flag
2.0.1 startup time was the issue. Thank you very much. I hope that the beta tag doesn't scare "management" lol. – logan May 29 at 17:42
vote up 0 vote down

You can read the article IronPython: Reusing Import Symbols to Avoid Performance Hits that can make the embedded scenarios run faster.

link|flag
vote up 0 vote down

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.

To reduce the runtime startup time, you can try NGEN'ing the binaries. This reduced the startup time around 60% for me.

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.

link|flag
Note, I suspect that DLR startup time is not as much of an issue in embedded scenarios where the runtime is loaded once and re-used. If your solution allows it, you can try hosting the runtime and launch scripts from it. – DSO May 27 at 23:48
I am hosting the runtime inside a C# app. The bottleneck is when I call execute. Once the code is initially parsed..the performance is acceptable. – logan May 28 at 17:27
As it turns out...startup time is a problem in embedded scenarios as well. I upgraded to 2.6B1 and my problem was fixed. – logan May 29 at 17:47
vote up 0 vote down

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 IronPython mailing list - the devs are very responsive.

There's been a series of interesting blog posts about IronPython performance recently - this is a good overview. 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.

link|flag
Thanks, actually I'm talking about a seemingly large perf difference between IronPython 1 (pre-dlr) and IronPython 2. not CPython and IronPython. Having said that, the performance overview of Python,IP and Jython was very informative. Thanks. – logan May 23 at 22:58
Ah, right. Actually, everything I've said holds true for isolating performance regressions from IP 1 to IP 2 - for example, a lot of the work in porting Resolver One to IP 2 was finding this kind of problem and working with the dev team to diagnose the cause. – wilberforce May 24 at 9:13
We definitely saw odd performance degradations (going from 1 to 2) in places where it seemed like what we were doing couldn't be related to the problem, which actually turned out to be things like method dispatch caches overflowing. Many of them seemed to be consequences of the architectural changes in extracting the DLR, and optimisation techniques. Dino and the team were very helpful in working out what was happening. – wilberforce May 24 at 9:23
vote up 0 vote down

Might be worth running through a profiler to see where the bottle necks are?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.