Best parallel computing option for heavily serialized code

5 ビュー (過去 30 日間)
Shivangi Giri
Shivangi Giri 2022 年 12 月 24 日
コメント済み: Shivangi Giri 2022 年 12 月 25 日
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

回答 (2 件)

Raymond Norris
Raymond Norris 2022 年 12 月 25 日
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 件のコメント
Shivangi Giri
Shivangi Giri 2022 年 12 月 25 日
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

サインインしてコメントする。


Sulaymon Eshkabilov
Sulaymon Eshkabilov 2022 年 12 月 24 日
  1 件のコメント
Shivangi Giri
Shivangi Giri 2022 年 12 月 25 日
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

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by