Execute parfor iterations in order!

21 views (last 30 days)
Hi,
I want to use Matlab parallelization to do this parfor in order like 1, 2, 3, ... , and I have limitted number of workers/cores, say 4.
parfor cnt = 1:20
do_something(cnt)
end
This is important for me to run cnt = 1:4 first, and once one of them finished, I need to start running next one which will be 5. I would appreciate your suggestions.
Thanks!
  2 Comments
James Tursa
James Tursa on 22 Nov 2021
Why do they need to be run in order? Does the result of the 1:4 iterations serve as inputs to the 5:8 iterations, etc.?
Sina Gharebaghi
Sina Gharebaghi on 22 Nov 2021
1- Actually, results of 1:4 does not serve as inputs of 5:8. However, based on results of 1:4, I may decide that running 5:8 is not required. I just need to stop running 5:end to decrease runtime.
2- If I want to use results of 1:4 as inputs of 5:8, how can I do that?
Thank you!

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 23 Nov 2021
This is not possible with parfor(), and it is unlikely that Mathworks will ever implement an option to support this.
parfor divides the available range up into chunks depending on the number of cores, and starts some of the chunks going, leaving other chunks in the pool to be allocated to whichever workers finish fastest. parfor also leaves a number of individual iterations to the end, to be allocated one-by-one as workers finish.
Furthermore, when parfor starts allocating the initial (larger) chunks, the first chunk it starts is the last iterations. This gives some advantages in pre-allocating arrays.
In your situation, instead of using parfor, you should use parfeval() . That allows you to control exactly which work gets sent out, in which order, and allows you to cancel chunks that have not finished yet.
  3 Comments
Steven Lord
Steven Lord on 23 Nov 2021
You may be able to use two parfor loops, one after the other. For the first one:
parfor k = 1:4
% body of parfor
end
If after evaluating the results of that parfor loop you decide you want to run the rest of the iterations:
parfor k = 5:20
% body of parfor
end

Sign in to comment.

More Answers (1)

Jaya
Jaya on 22 Nov 2021
Edited: Jaya on 23 Nov 2021
You need not run 4 times first and then start with 5. You can directly do the parfor for 1:20. Assuming yours is a quad core, then each core will take the task of doing 5 iterations. How it splits that is not a thing for us to worry.
I asked this similar question some time ago.Here is the link.
  5 Comments
Jaya
Jaya on 22 Nov 2021
Then I don't really think or don't know if or how can you still use parfor for this case. Since I understand your situation as something that requires simulation stopping based on some result you get in between the iterations. And as you might know, parfor cannot use a break statement.
Sina Gharebaghi
Sina Gharebaghi on 22 Nov 2021
Thanks for your help. You are right. Probably, I will not be able to use "parfor".

Sign in to comment.

Categories

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

Community Treasure Hunt

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

Start Hunting!