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

compiler: speed up bootstrapping time by 25% #41794

Merged
merged 1 commit into from
Aug 5, 2021
Merged

Commits on Aug 5, 2021

  1. compiler: speed up bootstrapping time by 25%

    The optimizer code is full of loop constructions and I found they're
    really better to not run in interpreter.
    
    With this PR, we create the caches of the optimizer code first and
    it speeds up the succeeding bootstrapping to create the caches for
    the overall inference code.
    
    On my machine, the bootstrapping took about 80 seconds previously,
    but on this PR the time is reduced to about 60 seconds.
    aviatesk committed Aug 5, 2021
    Configuration menu
    Copy the full SHA
    cb7faad View commit details
    Browse the repository at this point in the history