-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Updated 32 bit heuristics #44805
Updated 32 bit heuristics #44805
Conversation
This helps with JuliaLang#40644 and other programs which suffer from non-productive full collections.
…uent full collections.
We try really hard to stay under 2gb but if the live data exceeds that size we keep the interval small and perform full gcs until we get back under 2gb.
Is this going to fix our linux32 and win32 build failures? Looks promising - at least win32 is passing. |
What happened to the fixed debug print statements? |
I believe they got fixed in a separate PR. |
I don't think so. They are mentioned in the title of this pull request, they were introduced in b82679a. Af far as I can tell, currently in |
I wanted to separate the two issues because I thought you guys were fixing
this.
I think the better way to fix it is to use PRI macros and I can put
together a PR.
Christine
Christine
…On Thu, Apr 7, 2022 at 4:54 PM Mosè Giordano ***@***.***> wrote:
I don't think so. They are mentioned in the title of this pull request,
they were introduced in b82679a
<b82679a>.
Af far as I can tell, currently in master these lines were last touched
by me:
https://github.com/JuliaLang/julia/blame/f536b81aea93af0ed03543198560cf436e7def51/src/gc-debug.c#L985
—
Reply to this email directly, view it on GitHub
<#44805 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE3CLBBCOYQIAE5YJIQZ7LLVD5DPNANCNFSM5SD4TRFQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Having the fix in a different pull request is totally fine (and probably even better, as it's slightly orthogonal to this pull request), but that's still mentioned in the title of this PR and I don't see any other PR with it. Hence why I'm wondering what happened to it 🙂 |
OK, I just submitted the fix for the print errors in a separate PR. |
Ready to merge? |
I think so.
…On Mon, Apr 11, 2022 at 7:21 PM Oscar Smith ***@***.***> wrote:
Ready to merge?
—
Reply to this email directly, view it on GitHub
<#44805 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE3CLBBO6ZOGPCUVJ4T3ME3VESXZFANCNFSM5SD4TRFQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Thanks @chflood! |
We try really hard to stay under 2gb but if the live data exceeds that
size we keep the interval small and perform full gcs until we get back
under 2gb.