|
|
|
|
|
by ramanujan
5284 days ago
|
|
This might be a contrary view, but Cython has been ready for production for quite a while while PyPy has still been getting its boots on: http://cython.org/ It actually works right out of the box. You can download it and get real world examples to work in five minutes. It works with C++. It works with numpy. http://wiki.cython.org/WrappingCPlusPlus http://wiki.cython.org/tutorials/numpy It's the real deal: ridiculously easy to use as a drop-in replacement for slow functions. It works on problems that are not toys. It allows you to use high performance C and C++ libraries, it's used in a large and well maintained project (sage), and development was at least partially funded by Google. With all due respect to Maciej for his work, PyPy has been in the works for many years now, and projects like that don't tend to ship -- or to meet expectations if they actually do ship. |
|