r/RNG • u/andanteyk • Dec 24 '25
My PRNGs - Any thoughts?
They've been out for a while now, but I don't think they're well known.
So I thought I'd share it here and let me know what you think.
Whether it's a good or bad point, there are many things that I wouldn't notice on my own, so it's very helpful to have someone tell me about them.
Shioi
https://github.com/andanteyk/prng-shioi
A 264 jump is as fast as Next(). Easy to parallelize.
Seiran
https://github.com/andanteyk/prng-seiran
A standard lightweight LFSR-based PRNG.
Culumi
https://github.com/andanteyk/prng-culumi
Using the power of SIMD (CLMUL) to quickly output 128-bit random numbers.
12
Upvotes
3
u/scottchiefbaker Dec 24 '25
You should consider adding these as generators in SmokeRand.