-
-
Notifications
You must be signed in to change notification settings - Fork 30.6k
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
Tier 2 optimizations for 3.13 #115419
Comments
This is perhaps so rough as to be meaningless (i.e. uop counts != run time), but in an attempt to help prioritize these tasks, I thought I'd share some aggregate counts from a recent pyperformance run:
@markshannon: Let me know if anything else like this would be helpful. |
I am assigning myself all binary op related stuff. Since it is relatively straightforward. |
3.13 is nearing release, so nothing more is going in 3.13. Everything we didn't get done for 3.13 will get into 3.14 (if it hasn't been done already) |
Feature or enhancement
Prerequisites
Optimizations to be added to the tier 2 optimizer for 3.13
TO_BOOL
#115685LOAD_ATTR_MODULE
to a constant where the module is already a constant #115651BINARY_OP
#115480None
guards for constants #115819COMPARE_OP_INT/FLOAT/STR
_CHECK_STACK_SPACE
)frame.f_locals
in a debugger or similar. #115709If we have time:
CONTAINS_OP
#116381CALL_TUPLE_1
for list and generator argumentsCALL
in tier for type. Generate optimal argument handling code in tier 2.Linked PRs
The text was updated successfully, but these errors were encountered: