-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
gh-115999: Add free-threaded specialization for UNPACK_SEQUENCE
#126600
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
Changes from all commits
5e0d875
fa8ff2f
d49e9e6
ea1abf3
7ad46ad
66a2d67
16093d6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sort of unrelated to this PR, but I'm surprised constant unpacking like this isn't peepholed into
LOAD_CONST, STORE_FAST, LOAD_CONST, STORE_FAST
. Maybe because it's actually a longer instruction sequence than the original? It certainly does less work.@iritkatriel, thoughts?