Re: [Paraview] Retrieving tuples from dataset

2009-04-20 Thread Natalie Happenhofer
Hi! Thanks, retrieving works now, but the next problem is inserting: I tried the following: result -> InsertTuple3(i,tuple[0],tuple[1],tuple[2]); or result -> InsertNextTuple(tuple); but none of those methods work correctly. I checked the values of tuple, they are correct, but in the output

[Paraview] writing timeseries

2009-04-20 Thread Natalie Happenhofer
Hi! I´m just wondering if Paraview can write time-series of files, I.e. I have as input various files grouped as a timeseries, apply a filter and then write all new files with just one command.. thanks, Natalie Happenhofer _ ¿Qui

Re: [Paraview] Bug in Slice representation or in my XML ?

2009-04-20 Thread Jean M. Favre
Jérôme wrote: > Dear list, > Please find attached an XML that will expose vtkImageGaussianSource and > vtkImageMagnitude to ParaView > First of all, vtkImageGaussianSource behaves like it does not produce any > data : >- Add a Gaussian Source to the pipeline, >- Apply >- Then go to the

Re: [Paraview] Bug in Slice representation or in my XML ?

2009-04-20 Thread Jérôme
Hi Jean, - I was aware of the missing scalars->SetName("blabla") instruction. I think I have to post it on the VTK mailing list: I find it terrible to have to derived a VTK class like vtkImageGaussianSource to a vtkPVImageGaussianSource, to give a CMakeList with cxx code, for the only purpose to o

Re: [Paraview] Retrieving tuples from dataset

2009-04-20 Thread Berk Geveci
Natalie, Those methods definitely work otherwise our dashboards would be showing it. You must be doing something wrong. Make sure that tuple[] is a double array. -berk On Mon, Apr 20, 2009 at 3:50 AM, Natalie Happenhofer wrote: > Hi! > Thanks, retrieving works now, but the next problem is inser

[Paraview] Tiled display with multi-gpu.

2009-04-20 Thread Omkaranathan
Hi, Is it possible to achieve tiled display using a single dual-gpu machine which can drive 4 displays? I have read that the number of servers should atleast be equal to number of tiles. Can paraview be configued to have atleast a 2x1 tiled display with 2 GPUs? Thanks Omkaranathan __

Re: [Paraview] Bug in Slice representation or in my XML ?

2009-04-20 Thread Utkarsh Ayachit
IMHO, VTK has to be more strict to ensure that all data arrays are named, maybe even assign some default unique names to the data arrays. Some API on vtkAlgorithm breaks if arrays are not named. Utkarsh On Mon, Apr 20, 2009 at 5:29 AM, Jérôme wrote: > Hi Jean, > > - I was aware of the missing sc

Re: [Paraview] Tiled display with multi-gpu.

2009-04-20 Thread Utkarsh Ayachit
Yes, just run pvserver as follows: mpirun -np 2 pvserver -tdx=2 Of course, you'll have to build your own MPI enabled ParaView (you cannot use the binaries provided by on www.paraview.org). You'll have to ensure that the environment is set up correctly so that each pvserver processes gets the righ

Re: [Paraview] writing timeseries

2009-04-20 Thread Utkarsh Ayachit
Not currently. I've added a feature request for the same: http://paraview.org/Bug/view.php?id=8908 Utkarsh On Mon, Apr 20, 2009 at 4:15 AM, Natalie Happenhofer wrote: > Hi! > I´m just wondering if Paraview can write time-series of files, I.e. I have > as input various files grouped as a timeseri

Re: [Paraview] Conflict with FindBoost.cmake included with paraview?

2009-04-20 Thread Jeff Baumes
Thanks for pointing this out. I've just changed VTK to only use its local FindBoost.cmake if you are using CMake 2.4. Otherwise it will use the FindBoost located in CMake 2.6. Jeff On Thu, Apr 16, 2009 at 4:11 PM, Mike Jackson wrote: > I have using the PARAVIEW_EXTRA_EXTERNAL_MODULES method to c

Re: [Paraview] Tiled display with multi-gpu.

2009-04-20 Thread Omkaranathan
Hi Utkarsh, Thanks for the response. The suggested command line creates two seperate processes and devides the data properly, but I'm getting both the tiles in the same display(connected to first GPU). -Om Utkarsh Ayachit wrote: Yes, just run pvserver as follows: mpirun -np 2 pvserver -tdx

Re: [Paraview] Tiled display with multi-gpu.

2009-04-20 Thread Moreland, Kenneth
That's basically what Utkarsh meant by needing to set up the environment correctly. Typically the GPU used is determined by the DISPLAY environment variable. ":0" is typically the first GPU and ":1" is typically the second GPU. You need to launch pvserver such that node 0 gets :0 for the DISP

Re: [Paraview] Tiled display with multi-gpu.

2009-04-20 Thread Omkaranathan
Thanks Ken, But what I was searching for was the configuration options, as I couldn't find any information on how to launch the server in case of multiple displays. Can I specify display numbers in machinefiles? It would be great if I can get any pointers. -Om Moreland, Kenneth wrote: That’s

Re: [Paraview] Tiled display with multi-gpu.

2009-04-20 Thread Moreland, Kenneth
Other than the -tdx and -tdy options and the mullion options, there are no more specific pvserver configuration options. pvserver assigns processes to tiles in a left-to-right and top-to-bottom order. It is up to you to make sure that each process has the right X display. Basically, you need

Re: [Paraview] Tiled display with multi-gpu.

2009-04-20 Thread John Patchett
Hi, I Think I did what you are asking some time ago and used a pvx file which I handed the pvserver as a command line option, I can't recall all the details but here is one of the files, it was used when launching 2 pvservers via mpi on the same machine with 2 graphics cards. : $cat my

Re: [Paraview] Tiled display with multi-gpu.

2009-04-20 Thread Omkaranathan
Thanks Ken :-) , That worked like a charm ;-) . I wasn't aware of the '*:*' argument. Thanks for ur time. -Om Moreland, Kenneth wrote: Other than the –tdx and –tdy options and the mullion options, there are no more specific pvserver configuration options. pvserver assigns processes to tiles in

Re: [Paraview] Tiled display with multi-gpu.

2009-04-20 Thread Omkaranathan
Thanks for your response John, As I'm using openmpi, I could get it done with the ':' argument as suggested by Ken, thanks for your pointer anyways. -Om John Patchett wrote: Hi, I Think I did what you are asking some time ago and used a pvx file which I handed the pvserver as a command lin

Re: [Paraview] segmentation fault

2009-04-20 Thread Peter Brady
I recompiled with debug and the seg fault went away. I then recompiled it with the standard build and the seg fault was still gone. At this point I'm fairly confused as to what caused the original seg fault but I'm willing to chalk it up to the mysterious force that works to extend a grad student

Re: [Paraview] segmentation fault

2009-04-20 Thread John Drescher
> I recompiled with debug and the seg fault went away.  I then > recompiled it with the standard build and the seg fault was still > gone.  At this point I'm fairly confused as to what caused the > original seg fault but I'm willing to chalk it up to the mysterious > force that works to extend a gr

Re: [Paraview] segmentation fault

2009-04-20 Thread Scott, W Alan
Also known as "when all else fails, rebuild from scratch..." :-) Alan -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Peter Brady Sent: Monday, April 20, 2009 5:06 PM To: Berk Geveci Cc: ParaView Subject: Re: [Paraview] segment

[Paraview] Paraview 3.4.0 and HDF5

2009-04-20 Thread Nicholas Yue
Hi, I downloaded the precompiled version of Paraview 3.4 recently from http://www.paraview.org/files/v3.4/paraview-3.4.0-Linux64-x86.tar.gz Doing a bit of google search, it seems that HDF5 has been supported since paraview 3.3 When I tried to open HDF5, the drop downlist does

Re: [Paraview] Paraview 3.4.0 and HDF5

2009-04-20 Thread Michael Jackson
The HDF5 library is in there because of the Xdmf library that is also used. I don't think there are direct HDF5 readers for paraview. You can format your HDF5 data into Xdmf files and you may have better luck or you can write a custom reader for your data. _

Re: [Paraview] Feature Request: vtkImageResample

2009-04-20 Thread Jérôme
Hi, This is an up of this old thread. I have problems with vtkImageResample. I wrote an XML that exposes this filter to ParaView, and vtkImageGaussianSource and vtkImageMagnitude too. Please, could you try that and tell me if you can reproduce this behaviour ? - Load plugin as XML - Create a Gauss