I understand why interpretation overhead is expensive, but why are JITted Python implementations (Psyco and PyPy) still so much slower than other JITted languages like C# and Java?

Edit: I also understand that everything is an object, dynamic typing is costly, etc. However, for functions where types can be inferred, I'm not sure why this matters.

link|improve this question

66% accept rate
2  
Show me a function for which the type can be inferred. – delnan Dec 21 '10 at 14:40
Have you tried Jython? This runs on the JVM and possibly benitis from it. (Though I suspect not ;) – Peter Lawrey Dec 21 '10 at 14:44
@delnan, The JVM infers types based on usage and can optimise/inline some methods for up to two types and has a fall back if its not one of those types. e.g. Say you use a List.size() which has many possible implmentations but in reality you only use ArrayList which could be extended but it isn't so it can inline this method. The same applies for Object in Java (but not as useful) – Peter Lawrey Dec 21 '10 at 14:47
@Peter: I know Polymorphic inline caching (I even mentioned it a minute ago in a comment ^^). But that's propably not what dismcha is talking about. – delnan Dec 21 '10 at 14:48
@delnan, In java terminology, I wouldn't expect the performance to be much different unless you could infer a primtive type. (staticly infering the type against polymorphic inlining) The JVM doesn't do this so while it might be an improvement, I don't believe this is the reason the performance is different. – Peter Lawrey Dec 21 '10 at 15:02
show 7 more comments
feedback

6 Answers

Python is a dynamic language.

This means that much of the work that other static languages (like C# and Java) do at compile time, is done at runtime and this reduces performances.

EDIT:
Furthermore, JIT compiler for a dynamic language like python, can perform much less optimisations on the code because it can't do many assumptions due to the dynamicity of the code.

e.g.
Dynamic typing prevents assumptions about type of fields/variables/parameters... , thus any optimisation involving that is almost impossible.

EDIT2:
just a clarification:
when I say compile time, I mean also JIT compile time, because actually JIT is a compiler.
Applying this to my first sentence, yields that Python can perform much less work at JIT time than C# or Java...

link|improve this answer
But shouldn't it be inferring types for the function instances it JITs? – dsimcha Dec 21 '10 at 14:29
1  
@dsimcha: It propably does, as far as possible. But for def f(x): return f.func1() + f.func2(), you can't generate optimized machine code that gets two function pointers from fixed positions in vtables, call these, and uses one CPU instruction to add them. It has to look both methods up, call them, call the result's __add__ method, etc. – delnan Dec 21 '10 at 14:38
Just an example: In C# (or Java) a variable HAS a certain type and cannot change it during execution. In Python it can, then JIT cannot perform any optimization involving variable type infos, because actually at any moment a variable could have different types... – digEmAll Dec 21 '10 at 14:40
BTW, The Java compiler doesn't do significant optimisations at compile time, the JVM optimises in the JIT but it can make more assumptions than a more dynamic language. – Peter Lawrey Dec 21 '10 at 14:41
1  
@digEmAll: That's another problem, although it's not impossible to optimize there - it's just more work for the JIT (and its authors). JVMs can actually inline polymorphic (i.e. virtual) methods, savely, with an overhead as little as one or two instructions. As long as most method calls actually call the same method, this gives you the full boost of branch prediction. It's called polymorphic inline caching and it's really nifty. – delnan Dec 21 '10 at 14:43
show 5 more comments
feedback

People have already pointed out the technical details, so I'll add another factor: money.

In the last few years, Javascript VMs (Google's V8, Mozilla's Tracemonkey & Jaegermonkey, Apple's Nitro) have delivered a huge speed increase for another dynamic language. That's been driven in large part by Google's desire to make web apps more powerful. Python just doesn't have a big company standing to gain by making it 50x faster.

Oh, and the integration with C extensions like numpy means that speed is rarely critical for Python code, anyway.

link|improve this answer
But for me the whole point of Python is a nice, easy to work with language. If I have to even touch C and mess with a bunch of tools to glue Python and C together to get decent performance, I'd rather just write the whole thing in D or C# or something. (Unless someone else wrote the C extensions and they're trivial to get up and running, i.e. Numpy.) – dsimcha Dec 21 '10 at 15:01
Well actually google is trying to do something: en.wikipedia.org/wiki/Unladen_Swallow – digEmAll Dec 21 '10 at 15:02
@dsimcha: Well, in a lot of common situations, there are C extensions like numpy/scipy/PyQt around. But beyond that, if you need speed, you're right, Python isn't the tool to use. But a lot of programs are limited by the network/database/file/user rather than the CPU. – Thomas K Dec 21 '10 at 15:05
Also, Cython. A C guru can propably use it best, but it's still a welcome speed boost for code that needs to work wth a Python system but is somewhat CPU-intense. – delnan Dec 21 '10 at 15:11
@digEmAll: That was a couple of guys at Google, and they got moved on to higher priority projects. The SVN branch (py3k-jit) hasn't been updated in a few months. I hope something comes of it, but I'm not holding my breath. – Thomas K Dec 21 '10 at 15:11
feedback

The simplest possible answer is that PyPy is simply not yet as fast as hotspot and Psyco never will.

Writing a reasonable JIT is a long and tedious process and it took for example many years for hotspot to get where it is (with a lot of funding as well). The more complex and dynamic the language is, the longer it takes. On the bright side, we have good examples how JITs for dynamic languages can be very fast, take LuaJIT for one, which can beat C or JVM on many examples.

There are good news however: According to speed center PyPy got 27% faster on average in the past 100 revisions, so it'll happen eventually.

link|improve this answer
Nice to point out LUA, which is pretty darn fast. However, the last statement supposes that if you a lift a calf each day from the day it was born, you will be able to lift it when it is a full-grown cow/bull -- which is not correct. – pst Dec 22 '10 at 8:09
1  
That would be the way to go about lifting a bull anyway :-) What I didn't say is that we have a lot of plans and/or half-working branches that make stuff faster. – fijal Dec 22 '10 at 8:40
feedback

A really good question. I can't give you a complete answer, but I think one of the reasons is the "everything is objects and an object could be anything" concept. In Java, if you try "1.getClass()", it won't work unless you box it first, either explicitly or implicitly. In Python, it works out of the box. But objects are definitely more heavyweight than primitive types, which Python just doesn't seem to have.

The "an object can be anything" part is even more important. If you write "someobject.somefield" in Java, it knows at compile time what exactly is "somefield" and generates code that accesses it directly. Well, there are probably some tricks to give better binary compatibility, but that's nothing like Python, where it actually performs some sort of dictionary look-up at run time to figure out what exactly is "somefield" at that particular moment, as fields can be added and deleted dynamically.

To put it short, Python is more powerful, but that power has its cost.

link|improve this answer
You seem to be guessing. – igouy Dec 21 '10 at 19:21
This is not correct. Scala has "everything is an object" (with some little lies, but much more so than Java -- there are no primitives or static classes/methods in Scala). Yet, Scala (with static typing) can still easily run within a factor of Java or better. The difference between Scala and Python, relevant to this conversation, is static typing vs. dynamic typing. – pst Dec 22 '10 at 8:01
@pst, you took just a half of my answer. I wrote "everything is objects and an object could be anything". The "object could be anything" part refers to precisely what you're talking about. – Sergey Tachenov Dec 26 '10 at 13:58
@igouy, to some extent, I am. But I just can't imagine a language with capabilities like those running as fast as Java. I'd say that I am answering a kind of "why Python implementations can't be as fast as those of Java or C#" question instead of "why are they slow". – Sergey Tachenov Dec 26 '10 at 14:01
feedback

You can't really compare dynamic languages to enterprise-level static languages. Sun spent a lot of money optimizing the language, VM and JIT. Microsoft also did a fair job with their VM.

It is more interesting to compare jit'ed dynamic languages. Is it something about JavaScript that let google make their V8 faster than both PyPy and ruby 1.9 or it is just amount of money one invests?

link|improve this answer
Of course you can make that comparison! The "amount of money one invests" explanation is the same explanation you gave for the better performance of Java and .Net (Do you think money might buy talent?) – igouy Dec 21 '10 at 19:20
@igouy: Do I think money might buy talent? Yes I do. Money can concentrate more talented people around one project. – Denis Tulskiy Dec 22 '10 at 3:24
While this starts off correct, the term "enterprise-level" practically nullifies everything before it. An "enterprise Python" still wouldn't be as fast -- ever -- because it has to do more work. – pst Dec 22 '10 at 8:03
feedback

I understand why interpretation overhead is expensive...

Compare those Python implementations to non-JIT interpreted-mode Java and think about your question again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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