Random number generation without using bit operations - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T00:34:09Zhttp://stackoverflow.com/feeds/question/1009858http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1009858/random-number-generation-without-using-bit-operations5Random number generation without using bit operationsMartin2009-06-17T22:38:04Z2009-06-17T23:00:12Z
<p>I'm writing a vertex shader at the moment, and I need some random numbers. Vertex shader hardware doesn't have logical/bit operations, so I cannot implement any of the standard random number generators.
Is it possible to make a random number generator using only standard arithmetic? the randomness doesn't have to be particularly good!</p>
http://stackoverflow.com/questions/1009858/random-number-generation-without-using-bit-operations/1009869#10098694Answer by rlbond for Random number generation without using bit operationsrlbond2009-06-17T22:40:24Z2009-06-17T22:40:24Z<p>If you don't mind crappy randomness, a classic method is</p>
<pre><code>x[n+1] = (x[n] * x[n] + C) mod N
</code></pre>
<p>where C and N are constants, C != 0 and C != -2, and N is prime. This is a typical pseudorandom generator for Pollard Rho factoring. Try C = 1 and N = 8051, those work ok.</p>
http://stackoverflow.com/questions/1009858/random-number-generation-without-using-bit-operations/1009898#10098982Answer by Alex Brown for Random number generation without using bit operationsAlex Brown2009-06-17T22:46:44Z2009-06-17T22:46:44Z<p>Vertex shaders sometimes have built-in noise generators for you to use, such as cg's <code>noise()</code> function.</p>
http://stackoverflow.com/questions/1009858/random-number-generation-without-using-bit-operations/1009900#10099002Answer by schnaader for Random number generation without using bit operationsschnaader2009-06-17T22:47:24Z2009-06-17T22:47:24Z<p>Use a <a href="http://en.wikipedia.org/wiki/Linear%5Fcongruential%5Fgenerator" rel="nofollow">linear congruential generator</a>:</p>
<pre><code>X_(n+1) = (a * X_n + c) mod m
</code></pre>
<p>Those aren't that strong, but at least they are well known and can have long periods. The Wikipedia page also has good recommendations:</p>
<blockquote>
<p>The period of a general LCG is at most
m, and for some choices of a much less
than that. The LCG will have a full
period if and only if:</p>
<pre><code>1. c and m are relatively prime,
2. a - 1 is divisible by all prime factors of m,
3. a - 1 is a multiple of 4 if m is a multiple of 4
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1009858/random-number-generation-without-using-bit-operations/1009936#10099362Answer by Nosredna for Random number generation without using bit operationsNosredna2009-06-17T23:00:12Z2009-06-17T23:00:12Z<p>Believe it or not, I used newx = oldx * 5 + 1 (or a slight variation of it) in several videogames. The randomness is horrible--it's more of a scrambled sequence than a random generator. But sometimes that's all you need. If I recall correctly, it goes through all numbers before it repeats.</p>
<p>It has some terrible characteristics. It doesn't ever give you the same number twice in a row. A few of us did a bunch of tests on variations of it and we used some variations in other games.</p>
<p>We used it when there was no good modulo available to us. It's just a shift by two and two adds (or a multiply by 5 and one add). I would never use it nowadays for random numbers--I'd use an LCG--but maybe it would work OK for a shader where speed is crucial and your instruction set may be limited.</p>