I am just starting to read this thread so I wanted to answer various questions here separately.<div><br></div><div>Your assumption is correct. m = x*x will be 100% evaluated by NumPy. In theory, this should be pretty much instantaneous for ~1M elements, even for 20 timeslices.<br>
<br><div class="gmail_quote">On Tue, Sep 4, 2012 at 2:20 PM, Frank Horowitz <span dir="ltr">&lt;<a href="mailto:frank.horowitz@cornell.edu" target="_blank">frank.horowitz@cornell.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi All,<br>
<br>
I&#39;m trying to visualize some vector component field time series written by a seismic wave propagation code, and converted into .vtu files by a set of upstream scripts.<br>
<br>
I&#39;m trying to compute the norm of the vector at each timeslice and then visualize the resulting scalar field. The data are all PointData. There are approximately 866,000 values for each compoment per timeslice, and about 20 time slices.<br>

<br>
I&#39;m trying to do this computation via the Python Programmable Filter (mostly so I can learn its tricks for future reference). However, I&#39;m running into an apparent hang. The following code (complete with many more debugging print statements than I would use in production) is the simplest code I can make fail reliably:<br>

<br>
--- begin code snippet ---<br>
<br>
x = inputs[0].PointData[&#39;Scalars_&#39;]<br>
print &quot;x shape =&quot;,x.shape<br>
<br>
y = inputs[1].PointData[&#39;Scalars_&#39;]<br>
print &quot;y shape =&quot;,y.shape<br>
<br>
z = inputs[2].PointData[&#39;Scalars_&#39;]<br>
print &quot;z shape =&quot;,z.shape<br>
<br>
m = x*x  # I _thought_ this should run at numpy speeds…<br>
print &quot;m shape=&quot;,m.shape<br>
<br>
# more debugging code to finish computation of the norm omitted<br>
<br>
output.PointData.append(m,&quot;Displacement Norm&quot;)<br>
<br>
--- end code snippet ---<br>
<br>
I can run everything -- cutting and pasting initial subsets of the code into the program text box -- with the print output I expected all the way to the &quot;m = x*x&quot; statement.  If I include the &quot;m=x*x&quot; statement the process hangs. It does not even print out the preceding print statements.<br>

<br>
I was under the impression that such syntax as my &quot;x*x&quot; used above would be evaluated by numpy, and the (implicit) loop should be executed at C speeds.  Am I correct in that understanding?  If not, how should I go about coding an equivalent computation in the Programmable Filter that would execute at C (numpy) speeds?<br>

<br>
Thanks in advance for any help you might be able to provide,<br>
        Frank Horowitz<br>
        Cornell, Earth and Atmospheric Sciences<br>
<br>
<br>
<br>
<br>
<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>
</blockquote></div><br></div>