Visualization

Delta A40 nodes contain NVIDIA ray tracing cores (RT cores) and also support traditional rasterization graphics.

ParaView

ParaView is an open-source visualization and data analysis tool.

Interactive Use: ParaView in Open OnDemand (OOD)

The ParaView GUI client works via OOD on both CPU and GPU jobs, but interactivity is significantly improved on the latter.

  1. Start an OOD Desktop session.

  2. In the Desktop app, open a Terminal.

    OOD Desktop app with the terminal emulator icon at the bottom of the screen highlighted.
  3. Load ParaView, requires using the GUI-enabled ParaView module.

    $ module load paraview/5.10.1.gui
    
  4. Start ParaView.

    $ paraview
    

ParaView User Guide

Offline Use: pvbatch

Batch rendering can be achieved with pvbatch. Probably the best way to get started is to use Tools > Start Trace from the main menu in the GUI client to record an interactive session and then edit as needed.

pvbatch requires using a “headless” module, either paraview/5.11.2.egl.cuda for GPU jobs or paraview/5.11.2.osmesa.x86_64 for CPU jobs. Inside of a job, use srun and it will automatically use all of the allocated processors. E.g.:

srun pvbatch <myscript.py>

Additional information at: ParaView PvPython and PvBatch wiki

Advanced Interactive Use: ParaView Client-Server Mode

Note

For ParaView client-server connections, you must install the same version of ParaView that is installed on Delta, currently this is 5.11.2.

  1. Start the ParaView client application. (Note, if you are on an ARM processor, you may see a warning about not being able to load the OSPRay plugin which requires x86_64, this can be ignored.)

  2. Start a connection by clicking the Connect icon or navigating to File > Connect.

    Close-up view of the server Connect button.
  3. In the Choose Server Configuration window, click Fetch Servers .

    Choose server configuration modal dialog with fetch servers button highlighted.
  4. Scroll down and select the NCSA Delta CPU or NCSA Delta GPU profile and click Import Selected.

    Note

    You must have a GPU allocation for the GPU profile to work.

    Fetch server configurations modal dialog with NCSA configurations highlighted.
  5. In the Choose Server Configuration window, select the profile and click Connect. This will open a Connection Options window.

    Choose server configuration modal dialog with NCSA profile and connect button highlighted.
  6. In the Connect Options window, change the options, as appropriate. At a minimum, you need to update:

    • Delta username - enter your NCSA username that you use to log in to Delta.

    • --account - enter an account name that you have access to on Delta.

    Click OK.

    Side-by-side comparison of connection options modal dialog for CPU and GPU, respectively.
  7. A terminal window will open. This terminal must remain open for the duration of the session. In the terminal:

    1. Authenticate with your NCSA (Kerberos) password and DUO MFA. (1)

    2. A job will be submitted based on the options you entered in the previous step. The job file as well as the SLURM output will be in your home directory. (2)

    3. Messages will appear in the terminal for when the job starts and once the SSH tunnel has been made to pvserver running on the compute node. (3) and (4)

    Note

    On Windows, if nothing happens at this stage, or if a window opens and immediately closes, try downloading and installing PuTTY and plink.exe.

    Pop-up terminal session showing authentication, job submission, job status, and connection messages.
  8. When the connection is complete, the ParaView client window should change to the default background color, and the pipeline browser should show a csrs:// connection to Delta.

    Pipeline browser showing successful connection to Delta.

Suggestions on Connection Options

ParaView’s server application, pvserver, is a hybrid OpenMP-MPI application. This informs the following advice.

  1. Set --nodes to 1, unless your data is spatially decomposed into multiple files per timestep. In that case, try setting --nodes to the number of domains. ParaView will not automatically decompose data except for very specific instances. The D3 (data domain decomposition) filter might be able to decompose your data.

  2. --cpus-per-task also sets the default memory allocation of 1GB per cpu. Increase as necessary, but note that requesting more cores may result in longer queue wait times.

  3. For GPU jobs, start with --gpus-per-node at 1, it is likely there will be little to no benefit from using more than one. These jobs are run on the gpuA40x4 partition.

VisIt

VisIt is an open-source visualization and data analysis tool.

Interactive Use: VisIt in Open OnDemand (OOD)

The VisIt GUI client works via OOD on both CPU and GPU jobs, but interactivity is improved on the latter.

  1. Start an OOD Desktop session.

  2. In the Desktop app, open a Terminal.

    OOD Desktop app with the terminal emulator icon at the bottom of the screen highlighted.
  3. Load VisIt.

    $ module load visit
    
  4. Start VisIt.

    $ visit
    

VisIt User Manual

Offline Use: visit scripts

VisIt can be used for offline, batch rendering using Python scripts:

module load visit
srun visit -np <N> -nowin -cli -s <python script>

Note: it might be necessary to explicitly call sys.exit at the end of the script to prevent VisIt from dropping into a Python interpreter and consuming the remaining time after finishing rendering.

For more details see the Python Scripting section of the VisIt User Manual.

Advanced Interactive Use: VisIt Client-Server Mode

This is currently unsupported.

VTK

VTK Python API

To use the VTK Python API (in order to import vtk), install with pip or conda following the guidance at Installed Software - Python.

VTK C++ API

To build against the VTK C++ API or link to the VTK C++ libs, load the module with: module load vtk. The currently available version is 9.4.0.