フィルターのクリア

Parallel Computing Toolbox Matlab

2 ビュー (過去 30 日間)
abc abc
abc abc 2016 年 4 月 1 日
コメント済み: Walter Roberson 2016 年 4 月 1 日
Hi everybody,
i have many matlab files and i wonder if i can use Parallel Computing Toolbox to execute them at the same time ? Is it possible ? How can i do this ?
Many thanks :)

採用された回答

Walter Roberson
Walter Roberson 2016 年 4 月 1 日
That is going to depend on what they do. Sometimes it would work. For example, you could construct a cell array of function handles, open a pool, use the facility to add the source files to the pool, then enter an spmd block. The spmd bock content would look like
feval(HandlesCell{labindex})
Provided that your pool size was as large as the number of functions to execute.
You might also want to try parfeval for this use.
  2 件のコメント
abc abc
abc abc 2016 年 4 月 1 日
Thanks, but i'm a beginner in this subject... basically i have three files a.m, b.m and c.m. Is it possible to execute them at the same time ?
Walter Roberson
Walter Roberson 2016 年 4 月 1 日
It depends on what they do.
parpool(3)
spmd
switch labindex
case 1: a() ;
case 2: b() ;
case 3: c() ;
end
end

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeParallel Computing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by