Poor performance on cluster multithreading

I’m sure others have mentioned this, but I believe that rand() is not thread-safe and causes problems if multiple threads try to use rand() unless you specify the RNG separately for each thread.

Take a look at this thread for an example of multi-threaded random number generation.

1 Like