linux - [Solved-3 Solutions] Why does multiprocessing use only a single core after I import numpy ? - ubuntu - red hat - debian - linux server - linux pc
Linux - Problem :
Here's you can see in htop while this script is running:
Learn Linux - Linux tutorial - Script running - Linux examples - Linux programs
Linux - Solution 1:
- It turns out that certain Python modules (numpy, scipy, tables, pandas, skimage) mess with core affinity on import.
- This problem seems to be specifically caused by them linking against multithreaded OpenBLAS libraries.
- To reset the task affinity using the following code:
After the module imports, runs on all cores:
Learn Linux - Linux tutorial - multiprocessing number of cores - Linux examples - Linux programs
This doesn't seem to have any negative effect on numpy's performance, although this is probably machine- and task-specific .
There are also two ways to disable the CPU affinity-resetting behaviour of OpenBLAS itself. At run-time you can use the environment variable OPENBLAS_MAIN_FREE (or GOTOBLAS_MAIN_FREE), for example
Alternatively, if you're compiling OpenBLAS from source you can permanently disable it at build-time by editing the Makefile.rule to contain the line
Linux - Solution 2:
You can try this:
Linux - Solution 3:
This appears to be a common problem with Python on Ubuntu, and is not specific to joblib:
- Both multiprocessing.map and joblib use only 1 cpu after upgrade from Ubuntu 10.10 to 12.04
- Python multiprocessing utilizes only one core
- multiprocessing.Pool processes locked to a single core