Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Almost every pseudorandom generator in C/C++ (Mersenne, ...) uses some kind of internal state, usually a short vector of bytes. My question is, when such a random generator is used and shared in a multithreaded environment is it "much" better to have it thread-safe or letting "race conditions" to occur can only increases randomness?

I know this question is extremely hard to answer rigorously but will appreciate any opinions.

share|improve this question
2  
I'm not aware of any race conditions that don't invoke UB... – ildjarn Jun 26 '12 at 19:16
You wouldn't be able to rely on the properties of the pseudo random number generator if you let its state get corrupted. However, depending on the nature of your races, you may be essentially converting your pseudo random generator into more of a true random number source based on the randomness of your races. Depending on application, this may be better if not subject to outside manipulation and depending on the actual randomness in your races. – TJD Jun 26 '12 at 19:22

3 Answers

up vote 2 down vote accepted

Concurrent write

It highly depends on the kind of internal state. If every possible bit pattern is a valid representation of internal state, and will therefore occur at some point of the random number sequence, then having write races should be no problem. But many random number generators, including the Mersenne you quoted, have a period which is not a power of 256, therefore have some state patterns which are never reached in single-threaded operation and might cause problems in multi-threaded operation.

Concurrent read

But there is an even better reason to make the rng thread-safe: otherwise two processes might read the same state before either one can update it. This can lead to two processes sharing exactly the same random number, which can lead to all kinds of bizarre problems, depending on your application. You can make it thread-sdafe either using mutexes or thread-local state.

share|improve this answer

Letting "race conditions" occur can mess up everything. Technically, a data race is undefined behaviour, so it could order pizza.

But even if that doesn't happen, the internal state is likely to get corrupted and all important properties of the random sequence will just be lost. You can no longer guarantee uniformity, for example. You can't leave the generation of random numbers to chance.

share|improve this answer
1  
I would love if it ordered me a pizza. It would be a nice surprise after spending hours trying to find what is causing the undefined behavior in my code. – Daniel Jun 26 '12 at 19:20
Ordering pizza would be good, as long as it paid for it too. 8v) – Fred Larson Jun 26 '12 at 19:22
4  
+1 for "You can't leave the generation of random numbers to chance." – Dave Rager Jun 26 '12 at 19:24

Letting race conditions occur is never better. Your code may crash. Even if it doesn't, this is almost certain to degrade the quality of the numbers generated. People spend a lot of effort designing random number generators and injecting this sort of noise is highly likely to sabotage their efforts.

share|improve this answer
Well, this is also my own opinion, but wondered to hear it. – Martin Jun 26 '12 at 19:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.