フィルターのクリア

Existence of parallel computing resources (statistics, etc)?

2 ビュー (過去 30 日間)
Jakob Sievers
Jakob Sievers 2012 年 9 月 5 日
Hi there
I am running some long processes within a for-loop and have started wondering if I might be able to speed up the whole thing by using parallel computing and parfor-loops instead. Can anyone recommend me any good resources on this matter? I'm thinking statistics, computer-time vs. number of parallel workers for different problems, etc.
Thanks in advance
Jakob

採用された回答

Edric Ellis
Edric Ellis 2012 年 9 月 6 日
There are some simple benchmark results for PARFOR here. Whether your particular problem will speed up using PARFOR depends on a number of factors:
  1. How much of your problem is amenable to parallelisation (Amdahl's law)
  2. Are you going to run only on your local machine, or do you have a cluster
  3. Is your problem already benefiting from MATLAB' built-in multithreading (multithreading generally beats PARFOR on a single machine if it is available)
  4. The data access pattern of your problem (i.e. do you need to transmit large amounts of data compared to the amount of computation you're doing)

その他の回答 (1 件)

Jakob Sievers
Jakob Sievers 2012 年 9 月 12 日
Thanks Edric. Your answer was just what I needed!

カテゴリ

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