Hi,<br><br>I&#39;m trying to replicate it and with my scripts I&#39;m getting the attached memory usage.  I&#39;m not seeing it though I may not be measuring memory very well or letting it play out long enough.  I&#39;ll keep looking but it&#39;s possible that you&#39;re not deleting your created data object that is getting passed into the coprocessing library.  That would be my first recommendation to check.  You may want to turn on debug leaks if you haven&#39;t in your paraview build.<br>
<br>By the way, I generated that graph with the attached scripts.<br><br>Andy<br><br><div class="gmail_quote">2012/1/10 Takuya OSHIMA <span dir="ltr">&lt;<a href="mailto:oshima@eng.niigata-u.ac.jp">oshima@eng.niigata-u.ac.jp</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi John,<br>
<br>
What I observed on a Mac and a Linux box with 8 processor parallel<br>
runs (around 400MB per process) were quite similar to your memory<br>
profiling but with a bit larger growth rate of 1-2% and 2-3% per<br>
coprocessing execution respectively (somehow it was bigger on Linux).<br>
I&#39;ll see if I can do similar profiling.<br>
<div class="im"><br>
Takuya OSHIMA, Ph.D.<br>
Faculty of Engineering, Niigata University<br>
8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN<br>
<br>
</div>From: &quot;Biddiscombe, John A.&quot; &lt;<a href="mailto:biddisco@cscs.ch">biddisco@cscs.ch</a>&gt;<br>
Subject: RE: [Paraview] Unreclaimed memory in coprocessing? (PV 3.12.0 and git-master)<br>
Date: Tue, 10 Jan 2012 14:51:41 +0000<br>
<div class="im"><br>
&gt; Takuya<br>
&gt;<br>
&gt; Running a test of coprocessing on a very small simulation using just 2 cores<br>
&gt; on the desktop, I am seeing what looks like a very small leak. Over about 30<br>
&gt; iterations, it’s of the order of 30MB, so might not be real (need to test on a<br>
&gt; bigger domain to see if it grows faster), but the trend looks credible. I’ll<br>
&gt; see if I can pinpoint where the loss is occurring.<br>
&gt;<br>
&gt; JB<br>
&gt;<br>
</div>&gt; [cid]<br>
<div><div></div><div class="h5">&gt;<br>
&gt; -----Original Message-----<br>
&gt; From: <a href="mailto:paraview-bounces@paraview.org">paraview-bounces@paraview.org</a> [mailto:<a href="mailto:paraview-bounces@paraview.org">paraview-bounces@paraview.org</a>] On<br>
&gt; Behalf Of Takuya OSHIMA<br>
&gt; Sent: 10 January 2012 15:11<br>
&gt; To: <a href="mailto:paraview@paraview.org">paraview@paraview.org</a><br>
&gt; Subject: Re: [Paraview] Unreclaimed memory in coprocessing? (PV 3.12.0 and<br>
&gt; git-master)<br>
&gt;<br>
&gt; Attached in the previous mail is a sample Python coprocessing script that<br>
&gt; exhibits the problem (written by the coprocessing script generator of<br>
&gt; git-master as of today).<br>
&gt;<br>
&gt; Takuya<br>
&gt;<br>
&gt; Takuya OSHIMA, Ph.D.<br>
&gt;<br>
&gt; Faculty of Engineering, Niigata University<br>
&gt;<br>
&gt; 8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN<br>
&gt;<br>
&gt; From: Takuya OSHIMA &lt;<a href="mailto:oshima@eng.niigata-u.ac.jp">oshima@eng.niigata-u.ac.jp</a>&gt;<br>
&gt;<br>
&gt; Subject: Unreclaimed memory in coprocessing? (PV 3.12.0 and git-master)<br>
&gt;<br>
&gt; Date: Tue, 10 Jan 2012 23:08:21 +0900 (JST)<br>
&gt;<br>
&gt; &gt; Hi,<br>
&gt;<br>
&gt; &gt;<br>
&gt;<br>
&gt; &gt; I am having a problem where the memory usage of my simulation program<br>
&gt;<br>
&gt; &gt; which links with the PV coprocessing library grows until it gets<br>
&gt;<br>
&gt; &gt; killed by the operating system.<br>
&gt;<br>
&gt; &gt;<br>
&gt;<br>
&gt; &gt; I have the following piece of code for triggering coprocessing and if<br>
&gt;<br>
&gt; &gt; I watch the memory usage with the ps/top commands it grows only at the<br>
&gt;<br>
&gt; &gt; timestep where this-&gt;Processor-&gt;CoProcess() is called. My simulation<br>
&gt;<br>
&gt; &gt; program uses vtkImageData as underlying data structure so no data<br>
&gt;<br>
&gt; &gt; format adaptation (that may involve allocating extra memory for data<br>
&gt;<br>
&gt; &gt; copy) is performed.<br>
&gt;<br>
&gt; &gt;<br>
&gt;<br>
&gt; &gt;   this-&gt;DataDescription-&gt;SetTimeData(this-&gt;TimeInfo-&gt;GetTimeValue(),<br>
&gt;<br>
&gt; &gt;       this-&gt;TimeInfo-&gt;GetTIter());<br>
&gt;<br>
&gt; &gt;   if (this-&gt;Processor-&gt;RequestDataDescription(this-&gt;DataDescription))<br>
&gt;<br>
&gt; &gt;     {<br>
&gt;<br>
&gt; &gt;     vtkCPInputDataDescription *idd<br>
&gt;<br>
&gt; &gt;         = this-&gt;DataDescription-&gt;GetInputDescriptionByName(&quot;input&quot;);<br>
&gt;<br>
&gt; &gt;     // obtain vtkImageData to coprocess from my simulation program<br>
&gt;<br>
&gt; &gt;     vtkImageData *grid = this-&gt;TimeInfo-&gt;GetGrid();<br>
&gt;<br>
&gt; &gt;     idd-&gt;SetWholeExtent(grid-&gt;GetWholeExtent());<br>
&gt;<br>
&gt; &gt;     idd-&gt;SetGrid(grid);<br>
&gt;<br>
&gt; &gt;     // now call the coprocessing library<br>
&gt;<br>
&gt; &gt;     this-&gt;Processor-&gt;CoProcess(this-&gt;DataDescription);<br>
&gt;<br>
&gt; &gt;     }<br>
&gt;<br>
&gt; &gt;<br>
&gt;<br>
&gt; &gt; Besides, the Apple&#39;s &quot;leaks&quot; tool shows no meaningful leaks which<br>
&gt;<br>
&gt; &gt; makes me wonder if e.g. there are un-unregistered proxies than simply<br>
&gt;<br>
&gt; &gt; unmatched New()/Delete() or new/delete pairs.<br>
&gt;<br>
&gt; &gt;<br>
&gt;<br>
&gt; &gt; The problem is same for PV 3.12.0 and the git master as of today.<br>
&gt;<br>
&gt; &gt; Is anybody else having the problem? Any ideas?<br>
&gt;<br>
&gt; &gt;<br>
&gt;<br>
&gt; &gt; Thanks,<br>
&gt;<br>
&gt; &gt; Takuya<br>
&gt;<br>
&gt; &gt;<br>
&gt;<br>
&gt; &gt; Takuya OSHIMA, Ph.D.<br>
&gt;<br>
&gt; &gt; Faculty of Engineering, Niigata University<br>
&gt;<br>
&gt; &gt; 8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt;<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/" target="_blank">http://www.kitware.com/opensource/</a><br>
&gt; opensource.html<br>
&gt;<br>
&gt; Please keep messages on-topic and check the ParaView Wiki at: http://<br>
&gt; <a href="http://paraview.org/Wiki/ParaView" target="_blank">paraview.org/Wiki/ParaView</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;<br>
&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;<br>
&gt; *<br>
&gt;<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
</div></div></blockquote></div><br>