Hi,<br><br>I just reported a memory leak with matrices, and I might have found<br>another (unrelated) one in the convolve2d function:<br><br>import scipy.signal<br>from numpy import ones<br><br>while True:<br>    scipy.signal.convolve2d(ones((1,1)), ones((1,1)))<br>
<br><br>Is there an alternative implementation of a 2d convolution? On the long<br>run I'd be interested in using GPU acceleration, but for now I'd just<br>like to get my code to run without running out of memory...<br>
<br>Cheers!<br><br>David<br>