Does using rng guarantee having exactly the same result in each simulation?
Mostrar comentarios más antiguos
I am using rng to be able to reproduce data in each simulation. But I noticed there is a slightly difference for the result in each simulation (around 1%). Is it normal?
7 comentarios
Walter Roberson
el 25 de Abr. de 2020
I have a hypnosis that it just might be the case that sum() of a large vector might not always be the same. For sufficiently large arrays it would be handed to a high performance library that breaks the problem into sections and uses different threads to calculate subtotals for the different sections, and then combines the subtotals. But hypothetically the subtotals might get added in the order that the threads finish, which is not deterministic. However it is also possible that the software waits for all the threads to finish, so this is a hypothesis not certainty.
Walter Roberson
el 25 de Abr. de 2020
I think in theory prod() could have the same effect; the round-off for (A.*B).*C is not necessarily the same as for A.*(B.*C)
Zeynab Mousavikhamene
el 25 de Abr. de 2020
Editada: Zeynab Mousavikhamene
el 25 de Abr. de 2020
Stephen23
el 25 de Abr. de 2020
"Would resetting rng in a for loop be the reason?"
Yes.
Seeding rng with different values means it will generate different outputs. That is the point of it.
"Does using rng guarantee having exactly the same result in each simulation?"
If you call it with exactly the same seed value and generator, then yes.
But as you are using it with a different seed on each loop iteration, then no.
Walter Roberson
el 25 de Abr. de 2020
If you call it with exactly the same seed value and generator, then yes.
I am not convinced that is always true when MATLAB automatically invokes the multithreaded high-performance libraries. It might be the case that those libraries take care to handle partial results in a consistent order, but I do not know if they do.
Zeynab Mousavikhamene
el 25 de Abr. de 2020
Zeynab Mousavikhamene
el 25 de Abr. de 2020
Respuestas (0)
Categorías
Más información sobre Discrete Multiresolution Analysis en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!