|
|
|
|
|
by xioxox
2125 days ago
|
|
The Psyco project (now dead) used to get very reasonable speedups (factors of several) in pure Python code, particularly for numeric algorithms. It was retired because PyPy was being developed and was expected to solve all speed problems. I wonder why this approach worked while other python JITs did not. |
|
So if a Python JIT does 10-50x better than CPython on a numeric workload, that sounds impressive, but it's still slow compared to C.
And again they don't get 10-50x on string/hash/method call workloads. I think they're lucky to get 2x in some of those cases.