-
-
Notifications
You must be signed in to change notification settings - Fork 411
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
Garbage collection issues using IJulia? #785
Comments
The |
Makes sense. Knowing that saves the usability of jupyter/hydrogen for me for a lot of work--thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The Julia kernel appears to refuse to garbage collect allocations on Windows?
Repeatedly calling:
increases the size of the Julia process in memory by 305 mb chunks (with no limit, until reaching out of memory).
-Reassigning x = 0 does not reduce the process size in memory as reported by task manager.
-Calling GC.gc() does not release the additional memory.
When using the standard Julia REPL, memory growth halts at +710 mb, with the additional allocation released (to +305mb, expected size of the array in memory) after a manual garbage collection call.
This behavior holds true for any large array operations so far.
IJulia 1.14.1 (using default miniconda setup, conda v1.1.1)
Julia 1.0.2
Windows 7 SP1
The text was updated successfully, but these errors were encountered: