フィルターのクリア

issue with Repeating Random Numbers in parfor-Loops

1 回表示 (過去 30 日間)
Eli4ph
Eli4ph 2016 年 10 月 4 日
コメント済み: Eli4ph 2016 年 10 月 6 日
I want to get reproducible random number sequence in parfor-loops and tried the example in the documentation. However, the results are switching from two choices, which conflicts with the statement in the documentation.
what is the problem?
Here is the pilot code:
n = 3;
r = zeros(1,n);
parfor i = 1:n
stream = RandStream.getGlobalStream();
stream.Substream = i;
r(i) = rand;
end
r
one result is
r =
0.2646 0.2537 0.2276
another is
r =
0.2646 0.2537 0.3111
BTW, the results are produced by 2015a.
Creating random number stream explicitly can solve this problem, but it causes a significant increase in computing time when there are many parfor-loops. Is there a solution which is not expensive concerning computing time?

採用された回答

Edric Ellis
Edric Ellis 2016 年 10 月 5 日
I think you missed out a crucial piece of the example. In your code, you're accessing the current global stream without having explicitly set it first. You need the section:
spmd
rng(0,'combRecursive');
end
This ensures that RandStream.getGlobalStream() returns the same stream on each worker, and then setting the substream will act as it should.
  1 件のコメント
Eli4ph
Eli4ph 2016 年 10 月 6 日
Thanks! I thought that piece is another example and irrelevant with the parfor example. I should have checked the documentation again before asking. Sorry for that. Thanks again.

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

その他の回答 (1 件)

Gareth Thomas
Gareth Thomas 2016 年 10 月 4 日
  1 件のコメント
Eli4ph
Eli4ph 2016 年 10 月 5 日
Thanks, but this does not help.

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

カテゴリ

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