Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

Except even that's not true, if you consider that, canonically, "python" means CPython -- and PyPy is faster!


sort by: page size:

PyPy is much faster than CPython.

Pypy is considerably faster than CPython, so I don't think Python is doomed to be slower?

FWIW PyPy is signfificantly faster than CPython in a lot of tasks.

[citation needed] You're mostly talking nonsense. PyPy is usually 20-100x faster on the numeric workloads I measured than CPython, while the difference is significantly smaller on non-numeric workloads. The difference between C++ and CPython is also smaller.

PyPy is actually very fast, ~10x faster than standard python.

Interestingly, cPython is twice as fast as PyPy for me.

Caveat: pypy is not _consistently_ faster than CPython. There are cases where it is slower, sometimes even by a large margin.

PyPy is Python implemented largely in Python, and it supposedly is faster than python's C implementation.

Well, faster or equal, eventually in everything. Anything that pypy does slower than cpython is considered a bug as far as a I know. But I was not making a definitive academic statement or anything, just saying that it is, in general, faster. After all, it is faster in mother of all benchmarks, the fib function :) (edit: on my computer)

As for the PS; RPython is statically typed Python (perhaps some other extra restrictions apply). Not type-annotated or anything, just pure python written in a certain way. So it is a subset. As for what "Python" should have been "RPython", it was the first one. The pypy interpreter is written in RPython. But my statement was still correct because RPython is Python.


PyPy in general has much better performance than CPython.

If you want Python to go faster, use PyPy.

I'm not sure why you think pypy is slower than cpython "at pretty much everything" after looking at this site. Out of the 21 benchmarks given, 10 are 2x or more faster than cpython, 10 are between 2x faster and 2x slower and only 1 is more than 2x slower.

Look at implementing the Python language, couldn't you say that Python is faster than C if PyPy is faster than CPython ;-)

Not parent, but in my experience, PyPy is much faster than CPython on regular scripts, but has slower C API interop (more overhead calling Numpy).

Is it still true that PyPy is both faster and slower than CPython - faster when restricted to pure Python but slower than CPython using C extensions?

PyPy definitely shows that python could be 5x faster than it is, however this would still be ~10x slower than Julia/C/C++ (and R is roughly 5-10x slower than python now)

Actually, my experience with PyPy, while generally positive, has exhibited many of the characteristics that article talks about in terms of downsides to "sufficiently-smart compilers." It's almost always much faster than cpython, but how much faster is highly variable, and not especially predictably so; seemingly-insignificant changes can have large and unexpected performance implications, and it's difficult as a developer to have the proper mental model to figure out what's actually going on.

In CPython land, Python is slower, but performs predictably, and if you want to speed it up you write C, which is much faster, and also performs predictably, though it takes some developer effort. In PyPy, you get some of the speed of C without the effort, but without the predictability either.


Currently, PyPy is faster than CPython at pretty much anything (except when C is involved, for example, but they are working on that, too). You can see their benchmarks and comparisons at http://speed.pypy.org/.

What I think they mean by those statements is that this will improve performance over the previous version of PyPy - therefore - improve over CPython as well.


I think in general, programs written in "Python" will perform better in PyPy then CPython, but the current submissions are hyper-optimised for the implementation details of CPython.
next

Legal | privacy