vote up 3 vote down star

What would be the fastest way to generate a large number of (pseudo-)random bits. Each bit must be independent and be zero or one with equal probability. I could obviously do some variation on

randbit=rand()%2;

but I feel like there should be a faster way, generating several random bits from each call to the random number generator. Ideally I'd like to get an int or a char where each bit is random and independent, but other solutions are also possible.

The application is not cryptographic in nature so strong randomness isn't a major factor, whereas speed and getting the correct distribution is important.

flag

75% accept rate
Which distribution are you looking for? And how picky are you about the correctness of the distribution. If you really want P[x] = 1/n for numbers x in the interval [1..n], then you still need a good rng even if your application isn't crypto. – AnnaR May 15 at 8:45

8 Answers

vote up 0 vote down

How large do you need the number of generated bits to be? If it is not larger than a few million, and keeping in mind that you are not using the generator for cryptography, then I think the fastest possible way would be to precompute a large set of integers with the correct distribution, convert it to a text file like this:

unsigned int numbers[] =
{
  0xABCDEF34, ...
};

and then compile the array into your program and go through it one number at a time.

That way you get 32 bits with every call (on a 32-bit processor), the generation time is the shortest possible because all the numbers are generated in advance, and the distribution is controlled by you. The downside is, of course, that these numbers are not random at all, which depending on what you are using the PRNG for may or may not matter.

link|flag
vote up 0 vote down

If I rememeber correctly, the least significant bits are normally having a "less random" distribution for most pseuodo random number generators, so using modulo and/or each bit in the generated number would be bad if you are worried about the distribution.

(Maybe you should at least google what Knuth says...)

If that holds ( and its hard to tell without knowing exactly what algorithm you are using) just use the highest bit in each generated number.

http://en.wikipedia.org/wiki/Pseudo-random

link|flag
vote up 0 vote down

Just read some memory - take a n bit section of raw memory. It will be pretty random.

Alternatively, generate a large random int x and just use the bit values.

for(int i = (bitcount-1); i >= 0 ; i--) bin += x & (1 << i);
link|flag
Memory does not contain random data, quite the contrary actually: they have been put there in a structured fashion by an application. – soulmerge May 15 at 9:17
The bits will be randomly arranged for all intents and purposes, since structure is relevant to meaning. e.g. "my dog" is an ordered piece of data, but its binary is 011011010111100100100000011001000110111101100111, which is pretty random. Please give me back my +1 since I am correct. – Antony Carthy May 15 at 10:56
1  
Taking raw memory in general is not a good idea! E.g. in your example of an ASCII string, every 8th bit is 0 as valid characters use only the lower 7 bits. More over, it seems that bytes of 0 are quite common (padding, unused memory, numbers that to not use the full range, bools stored in int32, ...) so you could expect more 0s then 1s. – Chris May 15 at 16:49
Agreed. I did think this as I posted the above, but the second method will work fine... – Antony Carthy May 18 at 6:58
vote up 2 vote down

convert a random number into binary
Why not get just one number (of appropriate size to get enough bits you need) and then convert it to binary. You'll actually get bits from a random number which means they are random as well.

Zeros and ones also have the probability of 50%, since taking all numbers between 0 and some 2^n limit and counting the number of zeros and ones are equal > meaning that probability of zeros and ones is the same.

regarding speed
this would probably be very fast, since getting just one random number compared to number of bits in it is faster. it purely depends on your binary conversion now.

link|flag
vote up 0 vote down

You can generate a random number and keep on right shifitng and testing the least significant bit to get the random bits instead of doing a mod operation.

link|flag
vote up 1 vote down

SMP Safe (i.e. Fastest way possiable these days) and good bits

Note the use of the [ThreadStatic] attribute, this object automatically handle's new thread's, no locking. That's the only way your going to ensure high-performance random, SMP lockfree.

http://blogs.msdn.com/pfxteam/archive/2009/02/19/9434171.aspx

link|flag
Very interesting article, thanks – dagw May 15 at 9:08
vote up 3 vote down

As you say just generate random integers.
Then you have 32 random bits with ones and zeroes all equally probable.

Get the bits in a loop:

for (int i = 0; i < 32; i++)
{
  randomBit = (randomNum >> i) & 1
  ...
  // Do your thing
}

Repeat this for as many times you need to to get the correct amount of bits.

link|flag
rand is not guaranteed to return 32 random bits. In fact under msvc, it only returns 16. – avakar May 15 at 8:52
Ofcourse it's platform dependent but the principle is still the same regardless of platform. – Sani Huttunen May 15 at 8:54
1  
Are they really equally distributed? I considered this idea, but couldn't quite convince myself that each bit would be equally and independently distributed. – dagw May 15 at 8:58
1  
That depends on the amount of bits. In smaller subsets you can find skewed distributions but the larger the set the more uniform the distribution will become. Since you specifically wanted a large number of bits this should satisfy your distribution correctness. – Sani Huttunen May 15 at 9:05
I think that the distribution for each bit actually are not eaqually probable for the least significant bits. – Karlp May 15 at 9:25
show 4 more comments
vote up 4 vote down

Take a look at Boost.Random, especially boost::uniform_int<>.

link|flag

Your Answer

Get an OpenID
or

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