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

Stop 1weso squaring #176

Closed
wants to merge 3 commits into from
Closed

Stop 1weso squaring #176

wants to merge 3 commits into from

Commits on Apr 4, 2024

  1. Stop 1-Weso squaring on reaching target iterations

    For 1-Wesolowski proofs (used for "blueboxing") the squaring thread
    previously needlessly continued squaring while proof computation was in
    progress. In practice, proof computation also takes a while, so this
    could easily result in 10-20M additional squaring iterations. With this
    change, the squaring stops after the iterations target is reached. This
    also makes CPU utilisation more predictable. Previously, during squaring
    2 threads were heavily utilised, and 3 threads during proof computation.
    Now it's never more than 2 high-load threads: 2 for squaring, 1 for
    proof computation.
    xearl4 committed Apr 4, 2024
    Configuration menu
    Copy the full SHA
    1aa6795 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Configuration menu
    Copy the full SHA
    5ab519d View commit details
    Browse the repository at this point in the history
  2. fix type in comment

    emlowe committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    2623cd7 View commit details
    Browse the repository at this point in the history