/* Written in 2021 by Sebastiano Vigna (vigna@acm.org) To the extent possible under law, the author has dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. See . */ #include #include /* This is a Goresky-Klapper generalized multiply-with-carry generator (see their paper "Efficient Multiply-with-Carry Random Number Generators with Maximal Period", ACM Trans. Model. Comput. Simul., 13(4), p. 310-321, 2003) with period approximately 2^127. While in general slower than a scrambled linear generator, it is an excellent generator based on congruential arithmetic. As all MWC generators, it simulates a multiplicative LCG with prime modulus m = 0xff002aae7d81a646007d084a4d80885f and multiplier given by the inverse of 2^64 modulo m. Note that the major difference with standard (C)MWC generators is that the modulus has a more general form. This additional freedom in the choice of the modulus fixes some of the theoretical issues of (C)MWC generators, at the price of one 128-bit multiplication, one 64-bit multiplication, and one 128-bit sum. */ #define GMWC_MINUSA0 0x7d084a4d80885f #define GMWC_A0INV 0x9b1eea3792a42c61 #define GMWC_A1 0xff002aae7d81a646 /* The state must be initialized so that GMWC_MINUS_A0 <= c <= GMWC_A1. For simplicity, we suggest to set c = 1 and x to a 64-bit seed. */ uint64_t x, c; uint64_t inline next() { const __uint128_t t = GMWC_A1 * (__uint128_t)x + c; x = GMWC_A0INV * (uint64_t)t; c = (t + GMWC_MINUSA0 * (__uint128_t)x) >> 64; return x; } /* The following jump functions use a minimal multiprecision library. */ #define MP_SIZE 3 #include "mp.c" static uint64_t mod[MP_SIZE] = { GMWC_MINUSA0, GMWC_A1 }; static __uint128_t mod128 = ((__uint128_t)GMWC_A1 << 64) + GMWC_MINUSA0; /* This is the jump function for the generator. It is equivalent to 2^64 calls to next(); it can be used to generate 2^64 non-overlapping subsequences for parallel computations. Equivalent C++ Boost multiprecision code: cpp_int b = cpp_int(1) << 64; cpp_int m = GMWC_A1 * b + GMWC_MINUSA0; cpp_int r = cpp_int("0xeff1cf6268db2dd61f03b9690dc51b2f"); cpp_int t = ((m + c * b - GMWC_MINUSA0 * cpp_int(x)) * r) % m; x = uint64_t(t * GMWC_A0INV); c = uint64_t((t + GMWC_MINUSA0 * cpp_int(x)) >> 64); */ void jump(void) { static uint64_t jump[MP_SIZE] = { 0x1f03b9690dc51b2f, 0xeff1cf6268db2dd6 }; const __uint128_t cc = (__uint128_t)c << 64; const __uint128_t xx = GMWC_MINUSA0 * (__uint128_t)x; const __uint128_t s = cc >= xx ? cc - xx : (mod128 - xx) + cc; uint64_t state[MP_SIZE] = { (uint64_t)s, (uint64_t)(s >> 64) }; mul(state, jump, mod); x = GMWC_A0INV * state[0]; c = ((((__uint128_t)state[1] << 64) + state[0]) + GMWC_MINUSA0 * (__uint128_t)x) >> 64; } /* This is the long-jump function for the generator. It is equivalent to 2^96 calls to next(); it can be used to generate 2^32 starting points, from each of which jump() will generate 2^32 non-overlapping subsequences for parallel distributed computations. Equivalent C++ Boost multiprecision code: cpp_int b = cpp_int(1) << 64; cpp_int m = GMWC_A1 * b + GMWC_MINUSA0; cpp_int r = cpp_int("0xa86e3099c37bf0f8aca58a622476481a"); cpp_int t = ((m + c * b - GMWC_MINUSA0 * cpp_int(x)) * r) % m; x = uint64_t(t * GMWC_A0INV); c = uint64_t((t + GMWC_MINUSA0 * cpp_int(x)) >> 64); */ void long_jump(void) { static uint64_t long_jump[MP_SIZE] = { 0xaca58a622476481a, 0xa86e3099c37bf0f8 }; const __uint128_t cc = (__uint128_t)c << 64; const __uint128_t xx = GMWC_MINUSA0 * (__uint128_t)x; const __uint128_t s = cc >= xx ? cc - xx : (mod128 - xx) + cc; uint64_t state[MP_SIZE] = { (uint64_t)s, (uint64_t)(s >> 64) }; mul(state, long_jump, mod); x = GMWC_A0INV * state[0]; c = ((((__uint128_t)state[1] << 64) + state[0]) + (__uint128_t)GMWC_MINUSA0 * x) >> 64; }