Re: C extension using GSL

2009-03-28 Thread Nick Craig-Wood
Gabriel Genellina wrote: > En Fri, 27 Mar 2009 03:10:06 -0300, jesse escribió: > > > I give up. I cannot find my memory leak! I'm hoping that someone out > > there has come across something similar. Let me lay out the basic > > setup: > > [...] > > 4) C: A PyList object, L, is created (new ref

Re: C extension using GSL

2009-03-27 Thread Gabriel Genellina
En Fri, 27 Mar 2009 03:10:06 -0300, jesse escribió: I give up. I cannot find my memory leak! I'm hoping that someone out there has come across something similar. Let me lay out the basic setup: [...] 4) C: A PyList object, L, is created (new reference!). This will hold the solution vector for

Re: C extension using GSL

2009-03-27 Thread jesse
On Mar 27, 9:30 am, Nick Craig-Wood wrote: > jesse wrote: > >  I give up. I cannot find my memory leak! I'm hoping that someone out > >  there has come across something similar. Let me lay out the basic > >  setup: > > >  I'm performing multiple simulations on a model. Each iteration > >  involve

Re: C extension using GSL

2009-03-27 Thread Nick Craig-Wood
jesse wrote: > I give up. I cannot find my memory leak! I'm hoping that someone out > there has come across something similar. Let me lay out the basic > setup: > > I'm performing multiple simulations on a model. Each iteration > involves solving a system of differential equations. For this

Re: C extension using GSL

2009-03-27 Thread sturlamolden
On Mar 27, 7:10 am, jesse wrote: > I give up. I cannot find my memory leak! That's the penalty for using the Python C API. http://www.cython.org -- http://mail.python.org/mailman/listinfo/python-list

C extension using GSL

2009-03-26 Thread jesse
I give up. I cannot find my memory leak! I'm hoping that someone out there has come across something similar. Let me lay out the basic setup: I'm performing multiple simulations on a model. Each iteration involves solving a system of differential equations. For this I use the GNU Scientific Librar