Multithreaded Python without the GIL
07-15, 09:15–10:00 (Europe/Dublin), The Auditorium

CPython’s “Global Interpreter Lock”, or “GIL”, prevents multiple threads from executing Python code in parallel. The GIL was added to Python in 1992 together with the original support for threads in order to protect access to the interpreter’s shared state.

Python supports a number of ways to enable parallelism within the constraints of the GIL, but they come with significant limitations. Imagine if you could avoid the startup time of joblib workers, the multiprocess instability of PyTorch’s DataLoaders, and the overhead of pickling data for inter-process communication.

The “nogil” project aims to remove the GIL from CPython to make multithreaded Python programs more efficient, while maintaining backward compatibility and single-threaded performance. It exists as a fork, but the eventual goal is to contribute these changes upstream.

This talk will cover the changes to Python to let it run efficiently without the GIL and what these changes mean for Python programmers and extension authors.


Expected audience expertise: Domain

none

Expected audience expertise: Python

some

Abstract as a tweet

The “nogil” project aims to remove the GIL from CPython to make multithreaded Python programs more efficient, while maintaining backward compatibility and single-threaded performance.

Sam Gross is a software engineer at Meta AI. He is a co-author of PyTorch, an open-source Python machine learning framework. He holds M.Eng. and B.S. degrees in computer science from the Massachusetts Institute of Technology.

Since moving to DIAS he has worked on the development of calibration and
software tools for the Mid-Infrared Instrument (MIRI) on Webb. MIRI is an
international project comprising a consortium of European partner institutes,
including DIAS, the European Space Agency, and partners in the US.

He works on many aspects of MIRI including the calibration of the MIRI Medium
Resolution Spectrometer, development of the MIRI simulator, MIRI commissioning
activities and analysis tools, and will support MIRI commissioning at the Webb
Mission Operations Center at the Space Telescope Science Institute in
Baltimore.