Best parallel computing option for heavily serialized code

5 Ansichten (letzte 30 Tage)
Shivangi Giri
Shivangi Giri am 24 Dez. 2022
Kommentiert: Shivangi Giri am 25 Dez. 2022
Hello,
I have a MATLAB code that I want to speed up. However due to its serial (dependent on previous values) nature I cannot use parfor. Is there any other parallel computing option that might work for me. I have tried to implement communication jobs, however that does not seem to work.
Regards,
Shivangi

Antworten (2)

Raymond Norris
Raymond Norris am 25 Dez. 2022
The very nature of a cascading algorithm (i.e., dependent on previous values) makes it impossible to parallellize. However, perhaps you have the need to run multiples of your code. That could be parallized. That is, with Parallel Computing Toolbox (and perhaps MATLAB Parallel Server) you could run the entire code across different data sets, all at the same time.
  1 Kommentar
Shivangi Giri
Shivangi Giri am 25 Dez. 2022
Thank you for your reply Raymond. So the format of my code if
for loop %runs more than 300 times
call to func1;
some code
call to func2;
some code
end
So I need the for loop to execute in parallel. I cannot use parfor as each iteration is dependent on the previous one. Can you please give a little more insight into how can I parallelize the for loop and mainitain continuity in the execution. I do not have different datasets but few data files that I load before the for loop.
Please note I am at a beginner level with Matlab parallel computing toolbox. Also I am thinking if tranferring data to GPU can execute the code faster. Please help if you are familiar with GPU computing too.
Regards,
Shivangi

Melden Sie sich an, um zu kommentieren.


Sulaymon Eshkabilov
Sulaymon Eshkabilov am 24 Dez. 2022
  1 Kommentar
Shivangi Giri
Shivangi Giri am 25 Dez. 2022
Hello Sulaymon,
Thank you for your reply. spmd does not work with dot notations. That is the error I get when implementing spmd. So I guess this might not work for me. In case you have any other suggestions, please recommend.
Regards,
Shivangi

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Produkte


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by