필터 지우기
필터 지우기

How can I choose which lines of a for loop to send to each worker?

조회 수: 2 (최근 30일)
Marta
Marta 2017년 4월 26일
댓글: Marta 2017년 4월 26일
Hi!
I am running a for loop where I compute 3 variables separately and then add them all up in the end, i.e.
for time=0:endtime
calculate_a(a,u);
calculate_b(b,u);
calculate_c(c,u);
u=a+b+c;
end
I would like to parallelise this loop so that each calculation of a, b and c is done by an individual worker and they are all put together for the u calculation, i.e.:
for time=0:endtime
calculate_a(a,u); % performed by worker 1
calculate_b(b,u); % performed by worker 2
calculate_c(c,u); % performed by worker 3
% all workers share their outcome and perform
u=a+b+c;
end
I am new to parallel computing in Matlab. Can you help me figure out how to go about this? Also, are there any problems in creating a stand-alone program (.exe) from Matlab when using parallel computing?
Many thanks! Marta
  댓글 수: 2
Adam
Adam 2017년 4월 26일
If you have a for loop like that I would assume it is more usual to parallelise the for loop with a simple parfor than to parallelise the contents of the loop which I guess would have to be done with batch or spmd commands
Marta
Marta 2017년 4월 26일
Hi Adam. Thanks for the tip. I can't parallelise the for loop. It is a sequential loop: u evolves with time and I plot it every so often.
I will look into batch and spmd, thank you for the tip, Marta

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Parallel Server에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by