Re: [Paraview] Python script timing question

2013-04-09 Thread David E DeMarle
The paraview.benchmarks module should help in either case. What it does is grab all processes' vtktimerlogs, which contain in text form the time taken by every filter and rendering element in the pipeline, and saves/restores them to analyze at your leisure. That part at least should still be workin

Re: [Paraview] Python script timing question

2013-04-09 Thread Biddiscombe, John A.
rom: David E DeMarle [mailto:dave.dema...@kitware.com] Sent: 08 April 2013 16:44 To: Biddiscombe, John A. Cc: paraview@paraview.org Subject: Re: [Paraview] Python script timing question See the paraview.benchmark python module. http://paraview.org/Wiki/ParaView/Users_Guide/Batch_Processing serves as an

Re: [Paraview] Python script timing question

2013-04-08 Thread David E DeMarle
See the paraview.benchmark python module. http://paraview.org/Wiki/ParaView/Users_Guide/Batch_Processing serves as an example. The module is pretty old at this point and probably needs to be updated to work with modern ParaView. If there is significant interest I could do so . David E DeMarle Kit

[Paraview] Python script timing question

2013-04-08 Thread Biddiscombe, John A.
I'd like to run some benchmarks with P different parameters in paraview and Python scripting (which I almost never use) seems like a good option. Is it possible, to run an animation over N time steps and record the render time for each of the N frames and save that time to a CSV like file? I usu