parfor doesn't continue to run other jobs when only one worker is working

2 visualizzazioni (ultimi 30 giorni)
I have a parfor loop that is supposed to run 7 jobs with 4 workers. Each job executes a .exe program in their individual folders. It successfully completed 5 of the jobs. The 7th job's exe is hanging due to whatever reason, but I also noticed the 6th job wasn't even started after a long time. Why wouldn't Matlab allocate the 6th job to a worker to start it in this case?
The code is simply:
parfor i = 1:size(rotFold,1)
[~,~] = system(['cd /d ',rotFold{i},' & EPSC.exe']);
end
Thanks!
Jesse

Risposta accettata

Edric Ellis
Edric Ellis il 26 Mag 2020
parfor sends loop iterations to workers in groups known as "subranges" for efficiency. Also, recent versions of Parallel Computing Toolbox "eagerly" send subranges to workers slightly ahead of when the workers need them. Both of these things taken together can mean that if a single iteration of your loop hangs in this way, then other iterations might never start executing.

Più risposte (0)

Categorie

Scopri di più su MATLAB Parallel Server in Help Center e File Exchange

Prodotti


Release

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by