#4631: possible memory leak in matrix code?
------------------------+---------------------------------------------------
 Reporter:  craigcitro  |        Owner:  mabshoff
     Type:  defect      |       Status:  new     
 Priority:  major       |    Milestone:  sage-3.4
Component:  memleak     |   Resolution:          
 Keywords:              |  
------------------------+---------------------------------------------------
Comment (by mabshoff):

 But #4639 does not improve this further. Note that "base" is the initial
 memory consumption:
 {{{
 sage: base=get_memory_usage()
 sage: M = random_matrix(ZZ,50,50)
 sage: for _ in range(100): foo = M.hermite_form()
 ....:
 sage: get_memory_usage()-base
 7.5625
 sage: for _ in range(100): foo = M.hermite_form()
 ....:
 sage: get_memory_usage()-base
 8.515625
 sage: for _ in range(100): foo = M.hermite_form()
 ....:
 sage: get_memory_usage()-base
 9.5
 }}}

 Cheers,

 Michael

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/4631#comment:4>
Sage <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of 
Reinventing the Wheel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to