Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How cal i paralle my source code its too long and take time to run?

2 ビュー (過去 30 日間)
Mira le
Mira le 2020 年 1 月 15 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
please help me
I 've already implemented a code with many functions and its take more than day to run, I want to paralle this code how can we do that?
  2 件のコメント
darova
darova 2020 年 1 月 15 日
Please attach all your function and your code
Mohammad Sami
Mohammad Sami 2020 年 1 月 16 日
You need to think about which parts of your code can be run in parallel.
One option can be use to parfor loops instead of for loops. This only works if your loop code does not depend on the output of previous loop.

回答 (1 件)

Hiro Yoshino
Hiro Yoshino 2020 年 1 月 16 日
if you have parallel computing toolbox, this must be the best option to take.
You don't need to be bothered with the hastle you would need to work on without the toolbox.
  1 件のコメント
Walter Roberson
Walter Roberson 2020 年 1 月 16 日
most of the time, untuned parallel code is slower than the original code, and most of the time, editing code to be faster with parallel toolbox is a hassle.
Never use the Parallel Computing toolbox with the expectation that you will avoid hassle by using it. However with experience sometimes the hassle is not bad, and sometimes you can get pretty good performance improvements.

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by