|
|
|
|
|
by dr_zoidberg
3302 days ago
|
|
Why are they still comparing to Python 2.7.2? I couldn't find benchmarks against Python 3.5 for their Py3 interpreter. All the times I tried PyPy I came into a hurdle where one of the libraries I needs doesn't work (or underperforms) in PyPy, the most important ones being Numpy and OpenCV. So in the end I just gave up with them, and stuck with Python 2/3 and Cython, which solved my speed problems without having to do all the work of C-extensions from the ground up. Edit: the one benchmark I found covering PyPy3 is this: https://pybenchmarks.org/u64q/benchmark.php?test=all&lang=py... It shows PyPy3 5.7.1 being about 8x faster to 100x slower than CPython 3.6.1. For comparison, PyPy2 5.7.1 ranges from 10x faster to a bit over 30x slower to than CPython 2.7.13. |
|
The next benchmark "only" runs 6x slower in PyPy ; still bad, but that paints quite a differen picture.