Hi,
I’m trying to understand the risk of the following code in terms of random stability (assuming it affects the case reproducibility using same seed).
foearch(thread[i])
fork
//some operation unrealted to x[i]
begin
x[i]=$urandom();
end
//some operation which takes value from x[i]
join_none
wait_fork;
As I understand that the $urandom call takes value from thread RNG. Will this produce the same results if run multiple times using the same seed?
Thanks.