Parallel pool sizing for a parfor loop

3 visualizaciones (últimos 30 días)
Patrick Aoun
Patrick Aoun el 15 de Sept. de 2016
Respondida: Matt J el 16 de Sept. de 2016
I run a parfor loop on an 8 cores workstation.
This loop is parfor i = 1:10 and the work in each iteration is substantial.
MATLAB automatically creates 8 workers.
Assuming that each iteration takes about the same time to complete, is this highly inefficient? I'm thinking that the 8 cores finish at about the same time, and then only 2 are assigned to the remaining 2 iterations.
Then again, I don't really understand the idea of parallel pools. How would I optimise the size?
  1 comentario
Brendan Hamm
Brendan Hamm el 15 de Sept. de 2016
Theoretically with nothing running on the machine these should finish "about the same time" if every iteration runs exactly the same (i.e. no branching with if statements etc.). However, your computer has other stuff running on it as well which will take some cpu time here and there for other processes. MATLAB does not block the use of these to other processes. So, I would conclude with don't worry if the last iteration only has 2 workers being used, the others are still available.

Iniciar sesión para comentar.

Respuesta aceptada

Matt J
Matt J el 16 de Sept. de 2016
Based on my own personal experience, the choice of the parpool size can be optimized only through experimentation. I have found that too many workers can be as counter-productive as too few, even when the selected pool size doesn't exceed the number of physical cores. There is an optimal middle ground that only experimentation allowed me to find.
Granted, this was a few years and a few MATLAB versions ago, and may have been a platform-dependent thing anyway... To be honest, I'm a bit surprised to hear that people still use parfor, given the time needed to launch a parpool. I use gpuArray all the time, but starting a parpool takes as long as most of the jobs I would like to accelerate.

Más respuestas (0)

Categorías

Más información sobre Parallel Computing Fundamentals en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by