Execute parfor iterations in order!

조회 수: 17 (최근 30일)
Sina Gharebaghi
Sina Gharebaghi 2021년 11월 22일
댓글: Sina Gharebaghi 2021년 11월 23일
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
James Tursa
James Tursa 2021년 11월 22일
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 2021년 11월 22일
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!

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2021년 11월 23일
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
Steven Lord
Steven Lord 2021년 11월 23일
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
Sina Gharebaghi
Sina Gharebaghi 2021년 11월 23일
Thank you, Steven!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Jaya
Jaya 2021년 11월 22일
편집: Jaya 2021년 11월 23일
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
Jaya
Jaya 2021년 11월 22일
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 2021년 11월 22일
Thanks for your help. You are right. Probably, I will not be able to use "parfor".

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Parallel Computing Fundamentals에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by