A Bit of Benchmarking
A 2009 benchmark comparing CPython, Unladen Swallow, and PyPy performance on a Mandelbulb application, analyzing JIT patch results.
A 2009 benchmark comparing CPython, Unladen Swallow, and PyPy performance on a Mandelbulb application, analyzing JIT patch results.
Explains an Unladen Swallow optimization for CPython, replacing METH_O/NOARGS with METH_FIXED to speed up calls to built-in functions with fixed arguments.
Explores two key JIT compiler optimizations in Google's Unladen Swallow project for Python, focusing on type feedback and specialized function calls.