フィルターのクリア

When using parallel computing, why wait?

5 ビュー (過去 30 日間)
Moshe
Moshe 2012 年 9 月 30 日
In the parallel computing toolbox, there is an option "wait", to suspend the local matlab session until the remote job is completed. This option is commonly used in examples. I have a basic confusion regarding this: does this defies the purpose of running job remotely, or in parallel? what would be the advantages of waiting?

採用された回答

Matt J
Matt J 2012 年 9 月 30 日
編集済み: Matt J 2012 年 9 月 30 日
When coding, you often have a sequence of tasks, some of which are serial and some of which are parallelized. The parallelized tasks shouldn't pass their output forward to a serial task until all parallel workers have finished. Otherwise, they may pass forward partially processed data. Hence, you have wait commands to let all parallel workers catch up.
Does that make sense? Maybe I need to see the example you're thinking of.
  3 件のコメント
Matt J
Matt J 2012 年 9 月 30 日
It depends what you're doing after that. If whatever you're doing afterward relies on all batches being finished, then you should wait until all batches are finished.
Moshe
Moshe 2012 年 9 月 30 日
Thanks, that makes sense.

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by