vote up 1 vote down star

Hi guys.

I'm trying to do some opt-3 swapping on my TSP generator for euclidian distances, and since I in many cases have more than ~500 nodes, I need to randomly select at least 1 of the 3 nodes that I want to try swapping.

So basically I need a random-number function that's fast. (the normal rand() is way too slow) It doesn't have to be awesome, just good enough.

EDIT: I forgot to mention, i'm sitting at an environment where I can't add any libraries except the Standard Language Library (such as STL, iostream etc). So no boost =/

flag

80% accept rate
7  
rand() is too slow? – GMan Oct 28 at 21:35
Sounds like my question: stackoverflow.com/questions/1046714/… – mmyers Oct 28 at 21:37
(I went with a five-line XORshift generator.) – mmyers Oct 28 at 21:41
In seriousness, you're not going to find anything faster than rand(). Two simple math operations are hard to beat. – GMan Oct 28 at 21:54

7 Answers

vote up 2 vote down check

The other thread mentioned Marsaglia's xorshf generator, but no one posted the code.

static unsigned long x=123456789, y=362436069, z=521288629;

unsigned long xorshf96(void) {          //period 2^96-1
unsigned long t;
    x ^= x << 16;
    x ^= x >> 5;
    x ^= x << 1;

   t = x;
   x = y;
   y = z;
   z = t ^ x ^ y;

  return z;
}

I've used this one all over the place. The only place it failed was when I was trying to produce random binary matrices. Past about 95x95 matrices, it starts generating too few or too many singular matrices (I forget which). It's been shown that this generator is equivalent to a linear shift feedback register. But unless you are doing cryptography or serious monte carlo work, this generator rocks.

link|flag
Numerical Recipes (I know, it's kind of debatable as they have put a lot of nonsense into those books over the years) advises against using XOR-shift alone and instead only in a combined generator. – Johannes Rössel Nov 3 at 6:42
vote up 7 vote down

I'm pretty sure rand() is about as simple and fast as you can get, being a linear congruential generator. It multiplies and adds.

You could use the Boost random library, which is still probably just as fast and likely has better distribution.

Or use the special formula:

xkcd

link|flag
You missed the crucial comment in your implementation of fast_rand: xkcd.com/221 – Charles Bailey Oct 28 at 21:39
You forgot to add the comment to your function. // 4 was piced totally randomly from the range X - Y – Martin York Oct 28 at 21:40
There you go. :D – GMan Oct 28 at 21:43
vote up 2 vote down

The Mersenne Twister has some fast implementations.

link|flag
MT19937 is usually faster than an LCG. Also there is the SIMD-oriented Fast Mersenne Twister: math.sci.hiroshima-u.ac.jp/~m-mat/MT/… which is even faster. – Johannes Rössel Oct 30 at 6:59
vote up 2 vote down

rand() is really darn fast, and I don't believe you'll find much faster.

If it is in fact slowing you down (which I kinda doubt), then you need an architecture change.

I recommend pre-populating a long list with random numbers, then when you need one, simply take one from the list, rather than generating one. You may be able to re-fill the list with a background thread.

link|flag
vote up 0 vote down

can you pregenerate a bunch of random bits ahead of time and peel them off 2 at a time (since you only need a random number between 1 and 3)?

link|flag
vote up 0 vote down

Boost library has a set of random generators. Performance chart could be found here.

link|flag
vote up 0 vote down

See these generators from random number generator expert George Marsaglia. They're implemented as C macros, and they're lightning fast, just a few operations per number generated.

link|flag

Your Answer

Get an OpenID
or

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