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

libcore: rand: Use a pure Rust implementation of ISAAC RNG #6073

Closed
wants to merge 2 commits into from

Commits on Apr 29, 2013

  1. core: a pure Rust implementation of the ISAAC RNG.

    This replaces the wrapper around the runtime RNG with a pure Rust
    implementation of the same algorithm. This is faster (up to 5x), and
    is hopefully safer.
    
    There is still much room for optimisation: testing by summing 100,000,000
    random `u32`s indicates this is about 40-50% slower than the pure C
    implementation (running as standalone executable, not in the runtime).
    huonw committed Apr 29, 2013
    Configuration menu
    Copy the full SHA
    30266a7 View commit details
    Browse the repository at this point in the history
  2. 5 Configuration menu
    Copy the full SHA
    d4b934b View commit details
    Browse the repository at this point in the history