Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improving performance and efficiency of PRNG #32

Open
visitorckw opened this issue Feb 19, 2024 · 0 comments
Open

Improving performance and efficiency of PRNG #32

visitorckw opened this issue Feb 19, 2024 · 0 comments

Comments

@visitorckw
Copy link
Collaborator

We've recently integrated the MT19937 algorithm into our project for pseudo-random number generation. However, it's crucial to assess its performance and efficiency.

Quoting from @jserv :
With full support from processor hardware, achieving around 60 Gbits/s with AES, supplemented by intermittent reseeds from RDRAND, is achievable. When implemented purely in software, we can approach similar performance levels for algorithms such as SplitMix64, Xoroshiro128+, and PCG64. Additionally, with the utilization of vector processing capabilities, ChaCha20 offers competitive speeds and outperforms algorithms like the Mersenne Twister.

Action items:

  • Compare the performance and efficiency of MT19937 against alternative algorithms like SplitMix64, Xoroshiro128+, PCG64, and ChaCha20.
  • Investigate potential optimizations or enhancements to MT19937's implementation to improve its performance and efficiency further.
  • Consider the implications of adopting MT19937 versus alternative algorithms in terms of speed, efficiency, and suitability for the project's requirements.

Refs:

See: #21

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant