Maximum number of workers in a parallel loop (local cluster) with Matlab R2014a?
5 ビュー (過去 30 日間)
古いコメントを表示
I have a Macbook Pro Intel Core I7; which is the maximum number of workers in a parallel loop (local cluster) with Matlab R2014a? These are the characteristics of my laptop
hw.physicalcpu: 4
hw.logicalcpu: 8
0 件のコメント
採用された回答
Friedrich
2014 年 8 月 26 日
Hi,
3 件のコメント
Friedrich
2014 年 8 月 26 日
You can use more, but if you do its likely that it does not speed things up anymore because your system does not have any futher computational ressources.
Simply try it out. Run with 4 workers and do the same with 8 and see what happens.
Greg
2014 年 10 月 17 日
Just wanted to add my modest experimental result
sz = 450;
A = rand(sz,sz,'single');
B = rand(sz,sz,'single');
tic;
parfor k = 1:sz^2
fft2(A.*B);
end
toc;
6 workers - 159 sec.
12 workers - 118 sec.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Parallel for-Loops (parfor) についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!