On Ubuntu with Open MPI installed, I can use -bind-to command to bind each of the processes to a physical core like mpiexec -np 4 -bind-to core python mycode.py
. Now I have to work on Windows with MS-MPI installed, I don't know if there is a similar function.
I have tried to use -affinity and -affinity_layout according to this page like
mpiexec -np 4 -affinity -affinity_layout spread:P python mycode.py
which is supposed to raising error on my 2 physical cores laptop. But it works fine. Do you have any ideas?
Affinity with Microsoft MPI does work; Microsoft MPI just does not complain when multiple ranks land at a single core (i.e. when you oversubscribe).
One can find the affinities of running processes in "Task Manager > Details > (right click on process) > Set affinity".
So, on my 10-core machine, running
produces affinities
while running
results in
i.e., the mapping silently wraps around when all cores are exhausted.