On Thursday, October 20, 2016 at 1:19:51 AM UTC+2, Sébastien Labbé wrote:
>
> Does this also explain the leak?
>

Freed memory is not immediately returned to the system (mostly because it 
would be hilariously slow for small allocations). Whether a one-off 
computation increases process memory usage depends on many things like the 
details of the malloc() implementation, the heap layout, and, for Python 
objects, if the garbage collector has been run. To identify a memory leak 
by looking at "top" you need to run your code in a loop and check whether 
memory usage is roughly linear to the number of calls.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to