[Paraview] Superbild for 5.0.0

2016-01-19 Thread Fabian Wein
When will the superbuild for 5.0.0 be available? Thanks and regards, Fabian ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the

[Paraview] Using vtkDelimitedTextReader in a plugin -- Win64

2016-01-19 Thread Mark Cartwright
I have a plugin that uses vtkDelimitedTextReader, which compiles and links and runs perfectly on linux64 - but produces a link error on Win64 Error 1 error LNK2019: unresolved external symbol "__declspec(dllimport) public: static class vtkDelimitedTextReader * __cdecl

Re: [Paraview] Memory overload and I don't know what to delete (despite looking in the archives)

2016-01-19 Thread Tim De Coster
Sir, Thank you very much for answering so quickly. I went with the first option and tried the Delete() statements again, but still keep getting errors, be it different ones. Specifically I have put the following four statements right after Render() in my code: Delete(VoltParaviewMovie)

Re: [Paraview] Memory overload and I don't know what to delete (despite looking in the archives)

2016-01-19 Thread Tim Gallagher
Tim, The only thing I can recommend with your Delete() calls is to delete things in the reverse order from which they were created. So you should try doing: Delete(DataRepresentation1) Delete(RenderView1) Delete(AnimationScene1) Delete(VoltParaviewMovie) Other than that suggestion, I

[Paraview] Python script error - MPI

2016-01-19 Thread Ruggiero Guida
Dear Group, I am using a Python script to load a VTK file and render a 2D image. It has always worked fine, but recently I have started to get this error: [python] stderr: Fatal error in MPI_Init: Other MPI error, error stack: [python] stderr: MPIR_Init_thread(392)..: [python]

[Paraview] Linux memory problems exclusive to Paraview

2016-01-19 Thread Dennis Conklin
All, I will never be mistaken for a Linux sys admin, so let me try to tell you what is happening in a hopefully understandable way. We run Paraview standalone on our workstations - no remote server, etc. Just running the executables DL'ed from the website. We constantly have an issue with

[Paraview] Troubles building mathstuf/qhull subproject using PV 4.4.0 superbuild with Intel >14.x compilers

2016-01-19 Thread Giovanni A. Cone
Hola Gang, I'm attempting to get PV 4.4.0 builds of Paraview against Intel 14 and 15 on our HPC systems. One item that some users have asked us for was the Cosmotools integration. This ultimately needs the Qhull library to be built. Builds against GCC 4.8.2 went through without a hitch.

[Paraview] Memory overload and I don't know what to delete (despite looking in the archives)

2016-01-19 Thread Tim De Coster
Hi all, I am stuck with a problem regarding ParaView (version 4.0.1 64-bit), running on Ubuntu 14.04. It seems that when I run a python script, my memory gets overloaded. I looked already in the archives and it seems that I need to delete some data using the command Delete(). When I try this

Re: [Paraview] Memory overload and I don't know what to delete (despite looking in the archives)

2016-01-19 Thread Tim Gallagher
Your delete line is Delete(Animationscene1) but your variable is actually called AnimationScene1 (camel-case lettering). Python is case-sensitive, so that's why you are getting the error you are showing. That said, we do two things to loop over everything. We can Delete() every object,