Contribute Media
A thank you to everyone who makes this possible: Read More

How to JIT: Writing a Python JIT from scratch in pure Python

Description

Have you ever wondered how a JIT compiler works? Production quality JIT compilers are large, complicated pieces of software that can seem inscrutable at first glance. However, building a simple JIT compiler is surprisingly easy. We'll walk through how to build a template-style JIT compiler for Python from first principles, in Python!

Improve this page