Special Interest Area: VisualizationVisualizing Data With Paraview—Steven Cutchin, SDSCParaview is an excellent tool for a variety of scientific visualization tasks. Paraview is an Open Source software project managed and promoted by Kitware, Inc. The same company that provides support for VTK. To quote from Kitware's web-site:
SDSC has installed Paraview on our HPC resources and is keeping it up to date with the latest stable versions. Paraview provides iso-surfacing, streamlines, ribbons, segmentation, mesh generation and a large collection of additional features. It is extensible and programmers can add their own file formats and visualization features to it. In addition to Paraview SDSC has installed a collection of other software tools on Datastar. Many of these tools are installed in /usr/local/apps32 and /usr/local/apps. Please look under /usr/local/apps for mpirun which is used in the advanced part of this tutorial. Paraview can be run in two different very useful ways. The first way is to run it as a standard X-Windows application. From an X-Windows machine with OpenGL extensions you can log on to Datastar run paraview and have it display on your desktop machine. To do this you should ssh to dsdirect.sdsc.edu with X11 forwarding enabled. Do this with ssh -Y dsdirect.sdsc.edu Then you can work with Paraview directly on your desktop. Paraview Remote DisplayFrom yourlocal Linux/MacOSX/Cygwin machine: #login to datastar with X Forwarding enabled. On Datastar #make certain Paraview is in your path. This can be very handy and very quick if you have a fast Internet connection. However the direct mode has the problem that a lot of data and information is being streamed back and forth between datastar and your desktop with every mouse click. This can get very slow if you have a poor network connection. Also it won't work if your desktop system is a Windows machine. It will work in Cygwin for those of you who run X-Servers under Cygwin. Paraview Client/Server ModeTo address the prior problem Paraview can be run in Client/Server mode where the client runs on your desktop machine, Linux or Windows, and a server that does all of the visualization work runs on Datastar. The server streams the geometry data to the client and the client handles all of the other interactions locally. This is much more efficient on slower network connections. To use paraview in client server mode your first start a paraview server (pvserver) on datastar and then start a client (pvclient) on your local machine telling it to connect to the server on datastar.The steps for running Paraview in Client/Server mode are straightforward. Start the remote server on datastar and then start you local client telling it to connect to datastar. You can get help from pvclient with the -help command line option. The same for pvserver. How to Start Paraview in Client/Server ModeOn Datastar (dslogin.sdsc.edu) % setenv PATH /usr/local/apps32/paraview-2.2.1/bin:$PATH
On a Desktop (Windows or Linux) % ./pvclient --server-host=dsdirect.sdsc.edu The splash screen should should appear and then Paraview should start up. You can now browse the files on datastar through the client on your desktop. Make certain you turn off Composite on the main render options page in the paraview gui before loading data. Loading Raw Data into ParaviewParaview supports an extensive array of file formats. This is very useful, but what if the desired format is not on the list?
Example: How to load raw binary 3D volume data into Paraview
Paraview will tell you quite clearly if it loaded the data. You may have to modify the order of your grid size to get things to load properly. For example if your program outputs data with Y varying the fastest you may need to exchange Y and X values in the Extent options for your data to load properly. Paraview assumes that X varies the fastest and that Z varies slowest. So if you output the data with some other variable varying the fastest you will need to interchange the extent values. One nice option is that you don't have to load the entire volume if you don't want to. You can load sub-sets by reducing the Z value. So if you only want to load in 10 fields from you volume you can set Z to 9 in the extents range. The reader will happily work with both 2d and 3d volumes. So you can easily visualize 2d slices and just plain 2d output data Example Paraview Visualization of SCEC Data The following images show examples of datasets loaded and visualized in Paraview. (Clicking on the screenshot thumbnails will open a full-sized version.) Advanced OptionsThe following section cover advanced parts of using paraview and if you want to try them out, which I encourage you to do, then you may need to do a little digging on datastar and other threads articles. You will need to have ccmake installed in your path. ccmake is installed in /usr/local/apps32. For the distributed client/server option you will need to have mpirun installed in your path as well. This is also installed in /usr/local/apps32. If you have not used mpirun before, you should work through the mpi tutorials before you try it out with Paraview. Compiling Paraview from SourceBuilding Paraview can be quite an undertaking and involves many steps. It generally works smoothly on a Linux or Windows system. However more esoteric systems, eg Datastar, can require a significant amount of debugging and compile tweaking to get things to work right. Below we have example instructions for compiling Paraview on a Linux system. If you are tyring to compile Paraview on an unusual architecture expect some challenges but feel free to approach us for help. We would be happy to share our knowledge. How to build Paraview on Linux
Advanced Distributed Client/Server ModeThere is a very advanced way to use the Paraview server and that is to run it in a distributed mode across multiple processors. When run in this mode the server will distribute visualization tasks across multiple nodes and collect the results back to the server and send them to the client. Using this mode you can work with extremely large datasets on the server and still browse the results from your desktop. This mode uses MPI to communicate amongst the distributed nodes. You need to be familiar with working with and using MPI on datastar in order to make this work. You need to create a simple flat file that lists the machines you want to run the distrubted server on. The format of the file is simply the list of hosts: machinefile.txt host1.sdsc.edu host2.sdsc.edu ... This file can be generated from the node list handed to your code when you launch a job through llsubmit. How to Run Paraview in Distributed Client/Server ModeOn Datastar dslogin.sdsc.edu % setenv PATH /usr/local/apps32/paraview-2.2.1/bin:$PATH Start the Server in Distributed Mode. -np specifies number of nodes to use. % mpirun -v -machinefile machines.txt -np 4 pvserver --use-offscreen-rendering #machines.txt contains a list of server machines On your Desktop either Windows Or Linux % ./pvclient --server-host=dsnode1.sdsc.edu dsnode1 is the host name of the first node that was given to your job by llsubmit. Or you could use a few interactive nodes on datastar and not go through the llsubmit system. The splash screen should should appear and then Paraview should start up. You can now browse the files on datastar through the client on your desktop. When using Paraview in distributed mode you may want to consider turning composite back on. Normally composite requires an X-Server connection but since we have specified offscreen rendering it won't need one and should work fine. Steven Cutchin is reachable via e-mail at cutchin@sdsc.edu |



