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

[mypyc] Add lowered primitive for unsafe list get item op #18136

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Nov 10, 2024

  1. [mypyc] Add lowered primitive for unsafe list get item op

    This inlines the list get item op in loops like `for x in <list>`.
    
    I estimated the impact using two microbenchmarks that iterate over
    `list[int]` objects. One of them was 1.3x faster, while the other
    was 1.09x faster.
    
    Since we now generate detailed IR for the op, instead of using a
    C primitive function, this also opens up further IR optimization
    opportunities in the future.
    JukkaL committed Nov 10, 2024
    Configuration menu
    Copy the full SHA
    09140b8 View commit details
    Browse the repository at this point in the history