vote up 17 vote down star
5

What are your opinions and expectations on Google's Unladen Swallow? From their project plan:

We want to make Python faster, but we also want to make it easy for large, well-established applications to switch to Unladen Swallow.

  1. Produce a version of Python at least 5x faster than CPython.
  2. Python application performance should be stable.
  3. Maintain source-level compatibility with CPython applications.
  4. Maintain source-level compatibility with CPython extension modules.
  5. We do not want to maintain a Python implementation forever; we view our work as a branch, not a fork.

And even sweeter:

In addition, we intend to remove the GIL and fix the state of multithreading in Python. We believe this is possible through the implementation of a more sophisticated GC

It almost looks too good to be true, like the best of PyPy and Stackless combined.

More info:

Update: as DNS pointed out, there was related question: http://stackoverflow.com/questions/695370/what-is-llvm-and-how-is-replacing-python-vm-with-llvm-increasing-speeds-5x

flag
Sounds like cool vapors. I guess they don't like Parrots? Good luck. – Roboprog Apr 3 at 14:55
PyPy doesn't use Parrot either. – vartec Apr 3 at 15:03
what's the airspeedvelocity of an unladen swallow? – tharkun Apr 3 at 15:05
an african or an european? – David Schmitt Apr 3 at 15:14
Do you mean "opinions" or "options"? I have no options. I have a lot of opinions. For example, my favorite color is blue. No yellow. – S.Lott Apr 3 at 15:17
show 1 more comment

4 Answers

vote up 9 vote down check

I have high hopes for it.

  1. This is being worked on by several people from Google. Seeing as how the BDFL is also employed there, this is a positive.

  2. Off the bat, they state that this is a branch, and not a fork. As such, it's within the realm of possibility that this will eventually get merged into trunk.

  3. Most importantly, they have a working version. They're using a version of unladen swallow right now for Youtube stuff.

They seem to have their shit together. They have a relatively detailed plan for a project at this stage, and they have a list of tests they use to gauge performance improvements and regressions.

I'm not holding my breath on GIL removal, but even if they never get around to that, the speed increases alone make it awesome.

link|flag
2  
Yes, GIL removal when desktops machines have 8 cores is a must have. – vartec Apr 3 at 15:28
@vartec Not really, threads are not the only path to concurrency and multiprocessing (as in having multiple processes) has a long and storied history (at least on the *nix side of the fence). – Aaron Maenpaa Apr 3 at 18:22
@zacherates: multi-processing via processes (instead of threads) works great. Structure your big operation in a way that 8 processes are part of some massive pipeline and you can tie up every core. – S.Lott Apr 3 at 19:51
@zacherates: Well, multiprocessing has history. Green threads have future. – vartec Apr 3 at 20:09
1  
@zacherates: IPC are quiet tedious comparing to threading. – vartec Apr 3 at 20:10
show 2 more comments
vote up 3 vote down

This question discussed many of the same things. My opinion is that it sounds great, but I'm waiting to see what it looks like, and how long it takes to become stable.

I'm particularly concerned with compatibility with existing code and libraries, and how the library-writing community responds to it. Ultimately, aside from personal hobby projects, it's of zero value to me until it can run all my third-party libraries.

link|flag
Somehow I've missed that question. Thanks for the link. – vartec Apr 3 at 16:26
vote up 2 vote down

I think the project has noble goals and with enough time (2-3 years), they will probably reach most of them.

They may not be able to merge their branch back into the trunk because Guido's current view is that cython should be a reference implementation (ie. it shouldn't do things that are impossible for IronPython and jython to copy.) I've seen reports that this is what kept the cool parts of stackless from being merged into cython.

link|flag
But Guido also works for the Google ;-) – vartec Apr 3 at 15:19
That's true, it may be eaiser for someone inside Google to influence the BDFL. However, Google is a very large organization and the people behind this may never even meet Guido. – David Locke Apr 3 at 15:28
vote up 1 vote down

I think that a 5 times speed improvement is not all that important for me personally.

It is not an order of magnitude change. Although if you consume CPU power at the scale of Google it can be a worth while investment to have some of your staff work on it.

Many of the speed improvements will likely make it into cpython eventually.

Getting rid of the GIL is interesting in principle but will likely reveal lots of problems with modules that are not thread safe once the GIL is removed.

I do not think I will use Unladen Swallow any time soon but like how giving attention to performance may improve the regular Python versions.

link|flag
Yes, it's not an order of a magnitude change; it's half an order of a magnitude :) – ΤΖΩΤΖΙΟΥ Apr 3 at 20:01
Actually it is just a linear speed improvement. So it a problem takes n time it will now take 0.2 * n. An order of magnitude improvement would be something like replacing a linear search by a tree or hash-table lookup. O(n) to O(log n) to O(1). – James Dean Apr 3 at 20:27
@James: en.wikipedia.org/wiki/Order_of_magnitude – vartec Apr 4 at 8:38
I stand corrected. – James Dean Apr 6 at 17:33

Your Answer

Get an OpenID
or

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