Use several pools of workers in a parfor loop

5 views (last 30 days)
gmhs
gmhs on 9 Sep 2019
Commented: gmhs on 29 Oct 2019
Hi all,
I am currently trying to figure out if there is a way to use multiple pools of workers in a parfor loop. More precisely, I have 16 cores on my computer (8 physical cores) and until now I was using a classical for loop to perform 20 fminunc optimisations.
While fminunc already performs multiprocessing, I found out that the 16 cores of my cluster where only used to 30%, therefore I was thinking about using some kind of parfor loop over three pools of 5 workers in order to increase the efficiency of the computation and hopefully reduce the time of the computation.
I searched for a while now but didn't really find a way to do that...
Thanks a lot !
Gabriel

Answers (2)

Pravin Jagtap
Pravin Jagtap on 18 Sep 2019
Hello Gabriel,
Yes, most of the MATLAB in-built functions are multithreaded from 2008a Release. Following document may help you in accelerating the problem:
A ‘parfor’ will likely to slow the performance since the inbuilt function of optimization is inherently multithreaded and make use of multiple cores calling. For further optimization/speedup we need to dig more into code which uses parfor.
Kind Regards
~Pravin

Matt J
Matt J on 16 Oct 2019
Edited: Matt J on 16 Oct 2019
Your terminology is a bit confusing. There is only ever 1 pool of workers, but each worker may use multiple cores and the entire pool will always try to make best use of all available processors. To loop with a pool of 3 workers (so roughly 5 cores per worker), you would do,
parfor (i=1:20,3)
x{i}=fminunc(...);
end
  1 Comment
gmhs
gmhs on 29 Oct 2019
Thanks for your answer. I managed to solve this issue some time ago now and indeed used a parfor loop with 3 workers. The problem came from the fact that the default cluster profile allows only one thread per worker, it is therefore necessary to change the value of NumThreads to allow fminunc to use all the CPUs.

Sign in to comment.

Categories

Find more on Parallel Computing Fundamentals in Help Center and File Exchange

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!