| ▲ | toxik 20 hours ago | |
PyPy on numpy heavy code is often a lot slower than CPython | ||
| ▲ | mattip 18 hours ago | parent [-] | |
Yes. The C API those libraries use is a good fit to CPython, a bad fit to PyPy. Hence CFFI and HPy. Actually, many if the lessons from HPy are making their way into CPython since their JIT and speedups face the same problems as PyPy. See https://github.com/py-ni | ||