フィルターのクリア

When to use spmd and parfor function.

9 ビュー (過去 30 日間)
Daniel Jaló
Daniel Jaló 2012 年 8 月 15 日
Hi. In what situations are those two functions best suited? What's the difference between them? I never know which one to use... Thanks!

採用された回答

Edric Ellis
Edric Ellis 2012 年 8 月 16 日
Here's a very brief summary:
PARFOR is much simpler to use than SPMD, and should normally be your first choice when attempting to parallelize a collection of independent calculations. You need to be sure that your calculations are not order-dependent (i.e. they must not rely on the results of preceding calculations).
SPMD is somewhat harder to use, but allows communication between workers using labSend and labReceive. This is also the appropriate choice if you wish to implement new functionality for distributed arrays.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeParallel for-Loops (parfor) についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by