User:Comp.arch/Mersenne Twister

From Wikipedia, the free encyclopedia

The Mersenne Twister is a pseudorandom number generator (PRNG). It is by far the most widely used PRNG.[1] Its name derives from the fact that its period length is chosen to be a Mersenne prime.

The Mersenne Twister was developed in 1997 by Makoto Matsumoto (松本 眞) and Takuji Nishimura (西村 拓士).[2] It was designed specifically to rectify most of the flaws found in older PRNGs. It was the first PRNG to provide fast generation of high-quality pseudorandom integers.

The most commonly-used version of the Mersenne Twister algorithm is based on the Mersenne prime 219937 - 1. The standard implementation of that, MT19937, uses a 32-bit word length. There is another implementation that uses a 64-bit word length, MT19937-64; it generates a different sequence.

Adoption in software systems[edit]

The Mersenne Twister is the default PRNG for the following software systems:

R,[3] Python,[4][5] Ruby,[6] PHP,[7] CMU Common Lisp,[8] Steel Bank Common Lisp,[9] Free Pascal,[10] GLib,[11] SageMath,[12] Maple,[13] MATLAB,[14] GAUSS,[15] IDL,[16] Julia,[17] Scilab,[18] GNU Octave,[19] the GNU Scientific Library,[20] the GNU Multiple Precision Arithmetic Library,[21] and Microsoft Visual C++.[22] It is also available in standard C++ (since C++11)[23][24] and Apache.[25] Add-on implementations are provided in many program libraries, including the Boost C++ Libraries[26] and the NAG Numerical Library.[27]

The Mersenne Twister is one of two PRNGs in SPSS: the other generator is kept only for compatibility with older programs, and the Mersenne Twister is stated to be "more reliable".[28] The Mersenne Twister is similarly one of the PRNGs in SAS: the other generators are older and deprecated.[29]

Advantages[edit]

The commonly-used version of Mersenne Twister, MT19937, which produces a sequence of 32-bit integers, has the following desirable properties:

  1. It has a very long period of 219937 - 1. While a long period is not a guarantee of quality in a random number generator, short periods (such as the 232 common in many older software packages) can be problematic.[30]
  2. It is k-distributed to 32-bit accuracy for every 1 ≤ k ≤ 623 (see definition below).
  3. It passes numerous tests for statistical randomness, including the Diehard tests.

Disadvantages[edit]

The state space is very large and may needlessly stress the CPU cache (a period above 2512 is enough for any application[31]). In 2011, Saito & Matsumoto proposed a version of the Mersenne Twister to address this issue. The tiny version, TinyMT, uses just 127 bits of state space.[32]

By today's standards, the Mersenne Twister is fairly slow, unless the SFMT implementation is used (see section below).

It passes most, but not all, of the stringent TestU01 randomness tests.[33]

It can take a long time to start generating output that passes randomness tests, if the initial state is highly non-random—particularly if the initial state has many zeros. A consequence of this is that two instances of the generator, started with initial states that are almost the same, will usually output nearly the same sequence for many iterations, before eventually diverging. The 2002 update to the MT algorithm has improved initialization, so that reaching such a state is very unlikely.[34]

k-distribution[edit]

A pseudorandom sequence xi of w-bit integers of period P is said to be k-distributed to v-bit accuracy if the following holds.

Let truncv(x) denote the number formed by the leading v bits of x, and consider P of the kv-bit vectors
.
Then each of the 2kv possible combinations of bits occurs the same number of times in a period, except for the all-zero combination that occurs once less often.

Alternatives[edit]

The algorithm in its native form is not cryptographically secure. The reason is that observing a sufficient number of iterations (624 in the case of MT19937, since this is the size of the state vector from which future iterations are produced) allows one to predict all future iterations.

A pair of cryptographic stream ciphers based on output from the Mersenne Twister has been proposed by Matsumoto, Nishimura, and co-authors. The authors claim speeds 1.5 to 2 times faster than Advanced Encryption Standard in counter mode.[35]

An alternative generator, WELL ("Well Equidistributed Long-period Linear"), offers quicker recovery, and equal randomness, and nearly-equal speed.[36] Marsaglia's xorshift generators and variants are the fastest in this class.[37]

Algorithmic detail[edit]

Visualisation of generation of pseudo-random 32-bit integers using a Mersenne Twister. The 'Extract number' section shows an example where integer 0 has already been output and the index is at integer 1. 'Generate numbers' is run when all integers have been output. (click for detail)

For a k-bit word length, the Mersenne Twister generates integers in the range [0, 2k−2].

The Mersenne Twister algorithm is based on a matrix linear recurrence over a finite binary field F2. The algorithm is a twisted generalised feedback shift register[38] (twisted GFSR, or TGFSR) of rational normal form (TGFSR(R)), with state bit reflection and tempering. It is characterized by the following quantities:

  • w: word size (in number of bits)
  • n: degree of recurrence
  • m: middle word, or the number of parallel sequences, 1 ≤ mn
  • r: separation point of one word, or the number of bits of the lower bitmask, 0 ≤ rw - 1
  • a: coefficients of the rational normal form twist matrix
  • b, c: TGFSR(R) tempering bitmasks
  • s, t: TGFSR(R) tempering bit shifts
  • u, l: additional Mersenne Twister tempering bit shifts

with the restriction that 2nw – r - 1 is a Mersenne prime. This choice simplifies the primitivity test and k-distribution test that are needed in the parameter search.

For a word x with w bit width, it is expressed as the recurrence relation

with | as the bitwise or and as the bitwise exclusive or (XOR), xu, xl being x with upper and lower bitmasks applied. The twist transformation A is defined in rational normal form

with In − 1 as the (n − 1) × (n − 1) identity matrix (and in contrast to normal matrix multiplication, bitwise XOR replaces addition). The rational normal form has the benefit that it can be efficiently expressed as

where

In order to achieve the 2nw − r − 1 theoretical upper limit of the period in a TGFSR, φB(t) must be a primitive polynomial, φB(t) being the characteristic polynomial of

The twist transformation improves the classical GFSR with the following key properties:

  • Period reaches the theoretical upper limit 2nw − r − 1 (except if initialized with 0)
  • Equidistribution in n dimensions (e.g. linear congruential generators can at best manage reasonable distribution in 5 dimensions)

As like TGFSR(R), the Mersenne Twister is cascaded with a tempering transform to compensate for the reduced dimensionality of equidistribution (because of the choice of A being in the rational normal form), which is equivalent to the transformation A = RA = T-1RT, T invertible. The tempering is defined in the case of Mersenne Twister as

y := x ⊕ (x >> u)
y := :y ⊕ ((y << s) & b)
y := :y ⊕ ((y << t) & c)
z := y ⊕ (y >> l)

with <<, >> as the bitwise left and right shifts, and & as the bitwise and. The first and last transforms are added in order to improve lower bit equidistribution. From the property of TGFSR, is required to reach the upper bound of equidistribution for the upper bits.

The coefficients for MT19937 are:

  • (w, n, m, r) = (32, 624, 397, 31)
  • a = 9908B0DF16
  • u = 11
  • (s, b) = (7, 9D2C568016)
  • (t, c) = (15, EFC6000016)
  • l = 18

Pseudocode[edit]

The following piece of pseudocode generates uniformly distributed 32-bit integers in the range [0, 232 − 1] with the MT19937 algorithm:

 // Create a length 624 array to store the state of the generator
 int[0..623] MT
 int index = 0
 
 // Initialize the generator from a seed
 function initialize_generator(int seed) {
     index := 0
     MT[0] := seed
     for i from 1 to 623 { // loop over each element
         MT[i] := lowest 32 bits of(1812433253 * (MT[i - 1] xor (right shift by 30 bits(MT[i - 1]))) + i) // 0x6c078965
     }
 }
 
 // Extract a tempered pseudorandom number based on the index-th value,
 // calling generate_numbers() every 624 numbers
 function extract_number() {
     if index == 0 {
         generate_numbers()
     }
 
     int y := MT[index]
     y := y xor (right shift by 11 bits(y))
     y := y xor (left shift by 7 bits(y) and (2636928640)) // 0x9d2c5680
     y := y xor (left shift by 15 bits(y) and (4022730752)) // 0xefc60000
     y := y xor (right shift by 18 bits(y))

     index := (index + 1) mod 624
     return y
 }
 
 // Generate an array of 624 untempered numbers
 function generate_numbers() {
     for i from 0 to 623 {
         int y := (MT[i] and 0x80000000)                       // bit 31 (32nd bit) of MT[i]
                        + (MT[(i+1) mod 624] and 0x7fffffff)   // bits 0-30 (first 31 bits) of MT[...]
         MT[i] := MT[(i + 397) mod 624] xor (right shift by 1 bit(y))
         if (y mod 2) != 0 { // y is odd
             MT[i] := MT[i] xor (2567483615) // 0x9908b0df
         }
     }
 }

SFMT[edit]

SFMT, the Single instruction, multiple data-oriented Fast Mersenne Twister, is a variant of Mersenne Twister, introduced in 2006,[39] designed to be fast when it runs on 128-bit SIMD.

Intel SSE2 and PowerPC AltiVec are supported by SFMT. It is also used for games with the Cell BE in the PlayStation 3.[41]

MTGP[edit]

MTGP is a variant of Mersenne Twister optimised for graphics processing units published by Mutsuo Saito and Makoto Matsumoto.[42] The basic linear recurrence operations are extended from MT and parameters are chosen to allow many threads to compute the recursion in parallel, while sharing their state space to reduce memory load. The paper claims improved equidistribution over MT and performance on a high specification GPU (Nvidia GTX260 with 192 cores) of 4.7ms for 5x107 random 32-bit integers.

References[edit]

  1. ^ E.g. Marsland S. (2011) Machine Learning (CRC Press), §4.1.1. Also see the section "Adoption in software systems".
  2. ^ Matsumoto, Makoto; Nishimura, Takuji (1998). "Mersenne twister: A 623-dimensionally equidistributed uniform pseudo-random number generator". ACM Transactions on Modeling and Computer Simulation. 8: 3. doi:10.1145/272991.272995.
  3. ^ "Random Number Generators". CRAN Task View: Probability Distributions. Retrieved 2012-05-29.
  4. ^ "9.6 random — Generate pseudo-random numbers". Python v2.6.8 documentation. Retrieved 2012-05-29.
  5. ^ "8.6 random — Generate pseudo-random numbers". Python v3.2 documentation. Retrieved 2012-05-29.
  6. ^ ""Random" class documentation". Ruby 1.9.3 documentation. Retrieved 2012-05-29.
  7. ^ "mt_srand". php documentation. Retrieved 2012-05-29.
  8. ^ "Design choices and extensions". CMUCL User's Manual. Retrieved 2014-02-03.
  9. ^ "Random Number Generation". SBCL User's Manual.
  10. ^ "random". free pascal documentation. Retrieved 2013-11-28.
  11. ^ Random Numbers —GLib Reference Manual
  12. ^ Probability Distributions —Sage Reference Manual
  13. ^ "random number generator". Maple Online Help. Retrieved 2013-11-21.
  14. ^ Random number generator algorithms —Documentation Center, MathWorks
  15. ^ GAUSS 14 Language Reference
  16. ^ "RANDOMU (IDL Reference)". Exelis VIS Docs Center. Retrieved 2013-08-23.
  17. ^ Julia Language Documentation — The Standard Library
  18. ^ Random numbers —Scilab Help
  19. ^ GNU Octave: §16.3 —Built-in Function: rand
  20. ^ "Random number environment variables". GNU Scientific Library. Retrieved 2013-11-24.
  21. ^ "Randum Number Algorithms". GNU MP. Retrieved 2013-11-21.
  22. ^ <random>Microsoft Developer Network
  23. ^ Random Number Generation in C++11 —Standard C++ Foundation
  24. ^ "std::mersenne_twister_engine". Pseudo Random Number Generation. Retrieved 2012-09-25.
  25. ^ Data Generation —Apache Commons Math User Guide
  26. ^ "boost/random/mersenne_twister.hpp". Boost C++ Libraries. Retrieved 2012-05-29.
  27. ^ "G05 – Random Number Generators". NAG Library Chapter Introduction. Retrieved 2012-05-29.
  28. ^ "Random Number Generators". IBM SPSS Statistics. Retrieved 2013-11-21.
  29. ^ "Using Random-Number Functions". SAS Language Reference. Retrieved 2013-11-21.
  30. ^ Note: 219937 is approximately 4.3 × 106001; this is many orders of magnitude larger than the estimated number of particles in the observable universe, which is 1087.
  31. ^ Numerical Recipes, §7.1.
  32. ^ http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/TINYMT/index.html
  33. ^ P. L'Ecuyer and R. Simard, "TestU01: "A C library for empirical testing of random number generators", ACM Transactions on Mathematical Software, 33, 4, Article 22 (August 2007).
  34. ^ http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html
  35. ^ Matsumoto, Makoto; Nishimura, Takuji; Hagita, Mariko; Saito, Mutsuo (2005). "Cryptographic Mersenne Twister and Fubuki Stream/Block Cipher" (PDF).
  36. ^ P. L'Ecuyer, "Uniform Random Number Generators", International Encyclopedia of Statistical Science, Lovric, Miodrag (Ed.), Springer-Verlag, 2010.
  37. ^ "xorshift*/xorshift+ generators and the PRNG shootout".
  38. ^ Matsumoto, Makoto; Kurita, Yoshiharu (1992). "Twisted GFSR generators". ACM Transactions on Modeling and Computer Simulation. 2 (3): 179. doi:10.1145/146382.146383.
  39. ^ SIMD-oriented Fast Mersenne Twister (SFMT)
  40. ^ SFMT:Comparison of speed
  41. ^ PLAYSTATION 3 License
  42. ^ Saito, Mutsuo; Matsumoto, Makoto (2013). "Variants of Mersenne Twister Suitable for Graphic Processors". Transactions on Mathematical Software. 39 (2): 1. arXiv:1005.4973v3. doi:10.1145/2427023.2427029.

External links[edit]


Category:Pseudorandom number generators Category:Articles with example pseudocode