-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
GH-126491: Lower heap size limit with faster marking #127519
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
3038a78
Faster marking of reachable objects
markshannon c024484
Handle more classes in fast marking
markshannon e8497ae
Add support for asyn generators on fast path. Simplify counting
markshannon 4c1a6bc
Check stackref before converting to PyObject *
markshannon 6efb4c0
Rename stuff
markshannon b1c7ab0
Remove expand_region_transitively_reachable and use move_all_transiti…
markshannon 07f228b
Merge branch 'main' into faster-marking
markshannon 51ff78e
Fix compiler warnings and linkage
markshannon df907b5
Fix another linkage issue
markshannon 9ca64f5
Try 'extern'
markshannon bda13f4
Go back to PyAPI_FUNC and move functions together
markshannon d9d63c8
Use _Py_FALLTHROUGH
markshannon 57b8820
Add necessary #ifndef Py_GIL_DISABLED
markshannon a607059
Go back to using tp_traverse, but make traversal more efficient
markshannon 1545508
Tidy up
markshannon a1a38c8
A bit more tidying up
markshannon 68fc90b
Move all work to do calculations to one place
markshannon 8893cf5
Assume that increments are 50% garbage for work done calculation
markshannon ba20c7c
Elaborate comment
markshannon 8262bf0
More tweaking of thresholds
markshannon 3c2116e
Do some algebra
markshannon 72d0284
Revert to 2M+I from 3M+I
markshannon 0f182e2
Address review comments
markshannon d3c21bb
Address review comments and clarify code a bit
markshannon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev
Previous commit
Address review comments and clarify code a bit
- Loading branch information
commit d3c21bb57092428592b86af28246ed1221b002f5
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Is it worth linking to the doc from here?