Concept

Multiprocessing Module

Python's built-in multiprocessing module allows for spawning of processes for local and remote concurrency. The multiprocessing module bypasses the global interpreter lock (see the Threading Module node for more info) by implementing the subprocesses. This allows the utilization of multiple cores on a CPU.

0

1

Updated 2021-03-31

Tags

Python Programming Language

Data Science

Related