フィルターのクリア

Matlab Parfor with shared array?

1 回表示 (過去 30 日間)
Justin
Justin 2012 年 3 月 22 日
Is there anyway to share an array between workers like below:
A = zeros(10,10)
parfor i = 1:10
for j = 1:10
A(i,j) = i*j;
end
end
I was able to run this but its slower than a regular for-loop.

採用された回答

Jason Ross
Jason Ross 2012 年 3 月 22 日
You aren't doing enough work to make the overhead of starting the workers worth it.
  3 件のコメント
Justin
Justin 2012 年 3 月 22 日
Ok, I read the link you sent and realize i need more work in the body. Thanks,
-Justin
Jason Ross
Jason Ross 2012 年 3 月 22 日
No problem!

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

その他の回答 (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