vote up 5 vote down star
2

According to this:

http://www.codeplex.com/IronPython/Wiki/View.aspx?title=IP20VsCPy25Perf&referringTitle=IronPython%20Performance

IronPython (Python for .Net) is faster than regular Python (cPython) on the same machine. Why is this? I would think compiled C code would always be faster than the equivalent CLI bytecode.

flag

I'm not sure that cPython is any more official the Jython or IronPython. See docs.python.org/reference/… – S.Lott Feb 2 at 22:57
@S.Lott: it's not the Python, but it's the default implementation simply by virtue of being the first one there was. – Joachim Sauer Feb 3 at 12:52
Python does not get compiled to C – Ed Swangren Mar 7 at 0:22
...err, as Cody has already pointed out. Sorry. – Ed Swangren Mar 7 at 0:23

5 Answers

vote up 21 vote down check

Python code doesn't get compiled to C, Python itself is written in C and interprets Python bytecode. CIL gets compiled to machine code, which is why you see better performance when using IronPython.

link|flag
u r super fast <bravo> – 01 Feb 2 at 20:23
vote up 2 vote down

Could it be explained by this notation on the page you linked to:

Due to site caching in the Dynamic Language Runtime, IronPython performs better with more PyStone passes than the default value

link|flag
Without knowing what site caching is (a very complex concept only really explained in a video series on Channel9), this tells you nothing. In addition, IPy1 (which was pre-DLR) also had better performance than CPython. It all comes down to CIL compilation. – Cody Brocious Feb 2 at 20:27
vote up 5 vote down

You're right, C is a lot faster. That's why in those results CPython is twice as fast when it comes to dictionaries, which are almost pure C. On the other hand, Python code is not compiled, it's interpreted. Function calls in CPython are terribly slow. But on the other hand:

TryRaiseExcept:  +4478.9%

Now, there's where IronPython get is horribly wrong.

And then, there is this PyPy project, with one of the objectives being Just-In-Time compiler. There is even subset of Python, called RPython (Reduced Python) which can be statically compiled. Which of course is a lot faster.

link|flag
I've always wondered why RPython hasn't been promoted more. It's sufficiently dynamic to be useful, yet very speedy. If there was more documentation for it I'd surely use it. – Daishiman Mar 7 at 0:31
The PyPy team don't really want to encourage people to use RPython. They see it as an implementation detail of PyPy - it changes all the time, has poor documentation and terrible error reporting. They are concentrating on making the PyPy JIT fast enough that you don't need to use RPython to get speed... – fuzzyman Oct 5 at 14:27
vote up 0 vote down

I'm not sure exactly how you're drawing the conclusion that IronPython is faster than CPython. The link that you post seems to indicate that they're good at different things (like exceptions as has been pointed out).

link|flag
vote up 0 vote down

Wandering off your question "Why?", to "Oh, really?" The "good at different things" (Jason Baker) is right on. For example, cpython beats IronPython hands down start up time.

c:\Python26\python.exe Hello.py
c:\IronPython\ipy.exe Hello.py

Cpython executes a basic hello world nearly instantly(<100ms), where IronPython has an startup overhead of 4 or 5 seconds. This annoys me, but not enough to keep me from using IronPython.

link|flag

Your Answer

Get an OpenID
or

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