2025-plovdiv-parallel-python/README.md
2025-09-24 09:08:31 +02:00

1.5 KiB
Executable file

Parallel Python

A lecture from ASPP 2025. The slides and exercises are in slides/ and exercises/, respectively.

Lecture outline

  1. Processes, threads and THE GIL
  2. Hands-on investigations of embarrassingly parallel problems
    A. Multithreading with NumPy
    B. The multiprocessing package
    C. Blending processes and threads
  3. Going further

Further resources

Asyncio

A really cool example of using asyncio with the kitchen program is in extras/.

Online