Parallel pool sizing for a parfor loop
Mostra commenti meno recenti
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 Commento
Brendan Hamm
il 15 Set 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.
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Parallel for-Loops (parfor) in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!