ParaView/ParaView And Mesa 3D: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
 
(43 intermediate revisions by 4 users not shown)
Line 1: Line 1:
ParaView requires OpenGL libraries for rendering. For machines with sophisticated graphics cards, the OpenGL libraries are typically provided by the device drivers for those cards. However, on certain machines such as supercomputers without specialized graphics hardware, one has to rely on software-based rendering alternatives such as Mesa. Mesa is an open-source implementation of the OpenGL specification.
= Read this first =
ParaView and VTK make use of OpenGL for rendering. Most operating systems provide a default OpenGL library. If you're running a Windows or Mac OSX operating system, this page is not for you. On Windows download and install the latest drivers for your system's graphics hardware. On Apple Mac OSX just use the default OS provided drivers. On Linux the default OpenGL drivers are typically provided by Mesa. Mesa is an open source OpenGL implementation that supports a wide range of graphics hardware each with it's own back-end called a renderer. Mesa also provides several software based renderers for use on systems without graphics hardware. '''If you're running a Linux OS on a system without graphics hardware then this page is for you.'''


Mesa can be configured to work within different environments ranging from software emulation to complete hardware acceleration when supported GPUs are present.
= Mesa for your GPU =
=When to use OSMesa=
Before getting into details of Mesa graphics hardware drivers, a disclaimer. '''If you have NVIDIA or AMD graphics hardware Mesa is ''not'' your best option.''' To get the best performance from your graphics card you'll need to install the vendor provided driver. Vendor provided OpenGL drivers are typically much faster of a much higher quality than Mesa's which can be quite buggy. Many Linux distributions now provide thridparty closed source drivers through specialized package repositories. The details of installing vendor provided drivers in beyond the scope of this document. Please consult distribution and/or vendor specific documentation.


Some of the use-cases when one would build ParaView with Mesa are:
If you're running a Linux OS with X11 and graphics hardware and have not installed any OpenGL libraries you're probably already using Mesa! Note that the windowing system, in this case X11, is required for on-screen interactive rendering. On Linux systems the easiest way to install Mesa is through your distro's package manager. Most distros also provide packages for Mesa's software based renderers as well. Unfortunately, some OpenGL features may be disabled by your distro's package maintainers to avoid patent or other licensing restrictions. If you find that this is the case then you'll likely want to build Mesa from source. Given the depth and breadth of the universe of hardware that Mesa supports, building Mesa for use on systems with graphics hardware is beyond the scope of this article. Please consult the Mesa documentation directly.


# You are building on a machine where X Window System is not available.
Configuring VTK and ParaView with X11 or hardware accelerated Mesa only requires pointing VTK to the desired Mesa install and ensuring that LD_LIBRARY_PATH includes your Mesa install.
# You are building on a machine that has X, but you does not have graphics hardware or you still want to use software emulation for various reasons.


In case of (1) you'll have to build with OSMesa support. With newer versions of Mesa (>= 7.9), ParaView can be built with OSMesa only when the Qt GUI is disabled. Refer to [[#ParaView with Offscreen Mesa]]
= Mesa for your CPU (i.e. without graphics hardware, and OSMesa) =
OpenGL applications require some mechanism to create and manage a rendering context.  On Linux and Unix systems using X11 and GPUs, this is typically done with the GLX library (libGL) provided by a vendor supplied graphics driver.  For systems without graphics cards or powerful GPUs, the Mesa 3D package provides the OSMesa library (Off-Screen Mesa) and several CPU based renderers providing OpenGL drivers. Here we will discuss 2 of OSMesa's renderers: ''llvmpipe'' and ''swr''. They are threaded software based OpenGL drivers which use LLVM and clang for JIT compilation of GLSL shaders. The llvmpipe driver for OSMesa was added in the 2013 9.2.0 release and the swr driver in the 2016 12.0.0 release.  The llvmpipe driver is available on most of Mesa's supported platforms while the swr driver is a much more highly optimized and threaded driver only available for newer x86_64 processors with AVX, AVX2, or AVX512 capability.  They are currently the best software based OpenGL option for ParaView and VTK in terms of both OpenGL features and performance (swr on Intel CPUs and llvmpipe on all others).  OSMesa ''classic swrast'' no longer supports the necessary OpenGL features required by newer VTK and ParaView versions. Mesa's ''softpipe'', the single threaded reference software rederer, may still be useful in the case of a bug in the llvmpipe or swr drivers and provides a stable fallback option.  When enabling llvmpipe, you will get softpipe for free.


In case of (2) you can configure Mesa with X support. Unlike with OSMesa, in this configuration, one can build both the server-executables as well as the Qt client, and both will use Mesa for rendering. Refer to [[#ParaView with Mesa]].
== Installing LLVM ==
LLVM is an intermediate language representation and is used by Mesa of internal representation and optimization of OpenGL shaders. As such, it is required as a dependency to build the optimized CPU drivers for Mesa, at least v6.0.0 (if not using swr then only 3.9.0 is required). Use the following to configure LLVM for use with Mesa,'s llvmpipe and swr drivers:


=ParaView with Mesa=
<source lang="bash">
#!/bin/bash


This section describes the compilation process for machines with X. With newer versions of Mesa (>= 7.9) it is '''NOT''' possible to build with OSMesa support as well.
# Download the latest LLVM source
curl -L -O https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.1/llvm-12.0.1.src.tar.xz


==Configuring Mesa==
# Extract
tar -xvf llvm-12.0.1.src.tar.xz


Download Mesa libraries from [http://mesa3d.org/download.html Mesa3D website]. For ParaView, only '''MesaLib''' package is required.
# Configure
mkdir llvm-12.0.1.bld
cd llvm-12.0.1.bld
cmake                                          \
  -DCMAKE_BUILD_TYPE=Release                    \
  -DCMAKE_INSTALL_PREFIX=/path/to/install/llvm  \
  -DLLVM_BUILD_LLVM_DYLIB=ON                    \
  -DLLVM_ENABLE_RTTI=ON                        \
  -DLLVM_INSTALL_UTILS=ON                      \
  -DLLVM_TARGETS_TO_BUILD=X86                  \
  ../llvm-12.0.1.src


Configure and build Mesa based as described on [http://mesa3d.org/install.html Mesa3D website].
# Build and install
make -j8
make install
</source>


The recommended steps are:
Some explanation of these options:


  ./configure --with-driver=xlib --enable-osmesa --prefix={MESA_INSTALL_PREFIX}
; -DCMAKE_BUILD_TYPE=Release
  make
: Make sure we use a release build, not debug
  make install


==Configuring ParaView==
; -DLLVM_BUILD_LLVM_DYLIB=ON
: Build a dynamic libLLVM.so in addition to the a collection of static component libraries


Configure ParaView as described on [[ParaView:Build And Install]]. The only cmake variables that need to be updated are:
; -DLLVM_ENABLE_RTTI=ON
: Certain '''r'''un-'''t'''ime '''t'''ype '''i'''nformation (RTTI) features are used by Mesa and need to be enabled
 
; -DLLVM_INSTALL_UTILS=ON
: Some of the command line utilities are need by the Mesa build that are not installed by default
 
; -DLLVM_TARGETS_TO_BUILD=X86
: The default is to build all supported backend (PowerPC, ARM, etc.).  While that's certainly do-able, it's entirely unnecessary for our purposes so restrict to only the one we need.
 
== Installing Mesa llvmpipe and swr drivers ==
The Mesa 21.3.1 OSMesa state-tracker with either llvmpipe or swr driver is the preferred CPU based renderer for headless ParaView and VTK configurations without GPU hardware.  The following shows how to configure Mesa with a system installed LLVM.  Our strategy is to configure Mesa with the options necessary to provide a minimal build with only OSMesa and it's associated drivers.  This greatly simplifies the build as many of the other drivers/renderers depend on X11 or other libraries. The following set of options are from Mesa v21.3.1 release; older or newer releases may require slightly different options.
 
Before compiling, the following dependencies will need to be installed:
* meson: The build system used by Mesa since v19
* ninja: a highly parallel build tool used by meson
* python 3.x: Python 2x is no longer supported
* mako: A python module used by the mesa's build system
 
<source lang="bash">
#!/bin/bash
 
# Download and extract the latest Mesa source
curl -L -O https://archive.mesa3d.org//mesa-21.3.1.tar.xz
tar -xvf mesa-21.3.1.tar.xz
 
# Configure Mesa
mkdir mesa-21.3.10-build
cd mesa-21.3.10-build
 
meson                          \
  ../mesa-21.3.1              \
  --buildtype=release          \
  --prefix=/path/to/install    \
  -Dvulkan-drivers=            \
  -Ddri-drivers=              \
  -Dgallium-vdpau=disabled    \
  -Dgallium-xvmc=disabled      \
  -Dgallium-omx=disabled      \
  -Dgallium-va=disabled        \
  -Dgallium-xa=disabled        \
  -Dgallium-nine=false        \
  -Dgallium-opencl=disabled    \
  -Dbuild-tests=false          \
  -Degl=disabled              \
  -Dgbm=disabled              \
  -Dglx=disabled              \
  -Dplatforms=                \
  -Dglvnd=false                \
  -Dosmesa=true                \
  -Dopengl=true                \
  -Dgles1=disabled            \
  -Dgles2=disabled            \
  -Dshared-glapi=enabled      \
  -Dllvm=enabled              \
  -Dshared-llvm=enabled        \
  -Dgallium-drivers=swrast,swr
 
ninja
ninja install
</source>
 
Some explanation of these options:
 
; --buildtype=release
: The default Meson configuration is to build optimized debug builds; this ensures that a fully optimized release library is built without the additional debugging checks. '''This is particularly important when enabling the swr driver as there are known segfaults in the swr driver from internal debug checks when using ParaView and VTK'''.
 
; -Dvulkan-drivers=
: The Vulkan API is not being used so we're explicitly disabling it.
 
; -Ddri-drivers=
: Disable any drivers using Mesa's legacy driver infrastructure.
 
; -Dgallium-vdpau=disabled -Dgallium-xvmc=disabled -Dgallium-omx=disabled -Dgallium-va=disabled -Dgallium-xa=disabled        -Dgallium-nine=false -Dgallium-opencl=disabled
: Mesa comes with several different state trackers on by default.  We don't need any of them so we explicitly disable them.
 
; -Dbuild-tests=false
: Tests are only useful if you're actually developing Mesa.
 
; -Degl=disabled -Dgbm=disabled
: Disable the EGL library as we're not using here.
 
; -Dglx=disabled -Dplatforms=
: We're explicitly only building OSMesa so the GLX and EGL front-ends, as well as their related options, are explicitly disabled.  Note: If you also need to enable the GLX (possibly if trying to run the ParaView GUI over VNC) then change these to '''-Dglx=gallium-xlib -Dplatforms=x11'''.
 
; -Dglvnd=false
: GLVND is the next generation OpenGL library infrastructure on Linux for GLX and EGL, both of which are disabled above.  Note: The complexities of the GLVND infrastructure are outside the scope of this guide, but if enabling GLX above you probably still want to disable this.


  OPENGL_INCLUDE_DIR = {MESA_INSTALL_PREFIX}/include
; -Dosmesa=true
  OPENGL_gl_LIBRARY = {MESA_INSTALL_PREFIX}/lib/libGL.[so|a]
: OSMesa is the only frontend we're enabling.
  OPENGL_glu_LIBRARY = {MESA_INSTALL_PREFIX}/lib/libGLU.[so|a]


*IF AND ONLY IF* Mesa version < 7.9, one can also set the following cmake variables and build ParaView with OSMesa support. In this case, pvserver --use-offscreen-rendering will use OSMesa.
; -Dopengl=true -Dgles1=disabled -Dgles2=disabled
: Specify which APIs to enable.  Mesa will try to enable OpenGL, OpenGL ES, and OpenGL ES2 by default. We only need "normal OpenGL" so we're explicitly disabling the others.


  VTK_OPENGL_HAS_OSMESA = ON
; -Dllvm=enabled -Dshared-llvm=enabled
  OSMESA_INCLUDE_DIR = {MESA_INSTALL_PREFIX}/include
: Enable the use of LLVM based drivers.
  OSMESA_LIBRARY = {MESA_INSTALL_PREFIX}/lib/libOSMesa.[so|a]


The rest on the configure and build process for ParaView remains as described on [[ParaView:Build And Install]].
; -Dshared-glapi=enabled
: If using swr this helps reduce library sizes by breaking out common functionality used by libOSMesa and libSWR.


=ParaView with Offscreen Mesa=
; -Dgallium-drivers=swrast,swr
: The swrast driver enables the softpipe render and, if llvm is enabled (which it is in the previous option), the llvmpipe driver.  The swr driver is the optimized Intel-specific multithreaded driver, better known as OpenSWR.  Leave '''swr''' out if you are on an older CPU without AVX capability or on a non-Intel architecture.


If you Mesa version < 7.9, simply follow the instructions described in the previous section. However, if you have Mesa version >=7.9, it's not possible to build ParaView with onscreen and offscreen Mesa support at the same time. Without onscreen support, one cannot build the Qt application. So if you need the Qt application as well server executables with offscreen support, you'll have to do two separate builds when using Mesa version >=7.9.
== Using the llvmpipe and swr drivers ==
=== Changing drivers at runtime ===
Using the above configuration, the resulting mesa will have a libOSMesa.so (and possibly libGL.so) containing only the softpipe, llvmpipe, and swr drivers, with llvmpipe always being the default. To change drivers at runtime, use the GALLIUM_DRIVER environment variable, setting it to either softpipe, llvmpipe, or swr:


The following discussion only applies to Mesa >= 7.9 (although it should work with older versions too).
; Default behavior
<source lang="bash">
$ glxinfo | grep "^OpenGL \(renderer\|core profile version\|vendor\)"
OpenGL vendor string: Mesa/X.org
OpenGL renderer string: llvmpipe (LLVM 12.0.1, 256 bits)
OpenGL core profile version string: 4.5 (Core Profile) Mesa 21.3.1
</source>


==Configuring Mesa==
; softpipe
<source lang="bash">
$ export GALLIUM_DRIVER=softpipe
$ glxinfo | grep "^OpenGL \(renderer\|core profile version\|vendor\)"
OpenGL vendor string: Mesa/X.org
OpenGL renderer string: softpipe
OpenGL core profile version string: 3.3 (Core Profile) Mesa 21.3.1
</source>


Download Mesa libraries from [http://mesa3d.org/download.html Mesa3D website]. For ParaView, only '''MesaLib''' package is required.
; llvmpipe
<source lang="bash">
$ GALLIUM_DRIVER=llvmpipe
$ glxinfo | grep "^OpenGL \(renderer\|core profile version\|vendor\)"
OpenGL vendor string: Mesa/X.org
OpenGL renderer string: llvmpipe (LLVM 12.0.1, 256 bits)
OpenGL core profile version string: 4.5 (Core Profile) Mesa 21.3.1
</source>
: Use the LP_NUM_THREADS environment variable to set the number of threads used for pixel shaders; vertex shaders are processed single threaded. This is currently limited to 16 threads. In the context of ParaView and VTK, this means that geometry operations will be single threaded but pixel operation (like volume rendering) can still be parallelized.


Configure and build Mesa based as described on [http://mesa3d.org/install.html Mesa3D website].
; swr
<source lang="bash">
$ GALLIUM_DRIVER=swr
$ glxinfo | grep "^OpenGL \(renderer\|core profile version\|vendor\)"
OpenGL vendor string: Intel Corporation
OpenGL renderer string: SWR (LLVM 12.0.1, 256 bits)
OpenGL core profile version string: 3.3 (Core Profile) Mesa 21.3.1
</source>
: Use the environment variable KNOB_MAX_WORKER_THREADS to specify the number of threads used. swr does an effective job and parallelizing most aspect of rendering, in contract to llvmpipe which only parallelizes pixel shaders. This currently has a limit of 256 threads.


The recommended steps are:
= A comparison of OSMesa Gallium llvmpipe, OSMesa classic and, GPU Accelerated Rendering Performance =


  ./configure --with-driver=xlib --prefix={MESA_INSTALL_PREFIX}
** Note that this is currently outdated and while the relative performance numbers are still valid, OpenSWR is not present in these tests.
  make
  make install


Alternatively, one can use the following configure line. The only difference is that it does not build a libGL.[so|a] file. This keeps us from accidentally linking with that library which can result in segfaults when running ParaView.
The following chart shows the run time of VTK's Rendering ctests with OSMesa classic, Gallium llvmpipe OSMesa state-tracker, and an ATI Radeon HD 7870. The CPU on the test sytsem is a 4 core(8 thread) Intel(R) Core(TM) i7-4771 CPU @ 3.50GHz. The ATI driver used is AMD Catalyst 13.11-beta6. Run times were obtained by running each ctest twice consecutively discarding the first time. Tests that took less than 1 second were discarded, as were tests that failed on any one of the renderers. Note results are reported in cases where Classic OSMesa doesn't provide all the extensions, but Gallium llvmpipe does. For example classic OSMesa doesn't provide render buffer float. In these cases the run time reported for the classic OSMesa is ~0.


  ./configure --with-driver=osmesa --prefix={MESA_INSTALL_PREFIX}
The results show that Gallium llvmpipe OSMesa state tracker is quite a bit better across the board and supports more rendering algorithms than OSMesa classic. This especially so for GPU accelerated volume rendering.
  make
  make install


==Configuring ParaView==
[[File:Osmesa-rendering-sm.png]]


= Configuring ParaView for use with OSMesa =
Configure ParaView as described on [[ParaView:Build And Install]]. The only cmake variables that need to be updated are:
Configure ParaView as described on [[ParaView:Build And Install]]. The only cmake variables that need to be updated are:


   PARAVIEW_BUILD_QT_GUI = OFF
<source lang="bash">
   OPENGL_INCLUDE_DIR = {MESA_INSTALL_PREFIX}/include
#!/bin/bash
   OPENGL_gl_LIBRARY = <empty>  -- '''ENSURE THAT THIS IS EMPTY'''.
 
   OPENGL_glu_LIBRARY = {MESA_INSTALL_PREFIX}/lib/libGLU.[so|a]
cmake \
   VTK_OPENGL_HAS_OSMESA = ON
   ...
   OSMESA_INCLUDE_DIR = {MESA_INSTALL_PREFIX}/include
  -DPARAVIEW_BUILD_QT_GUI=OFF                                 \
   OSMESA_LIBRARY = {MESA_INSTALL_PREFIX}/lib/libOSMesa.[so|a]
   -DVTK_USE_X=OFF                                              \
   VTK_USE_X = OFF
   -DOPENGL_INCLUDE_DIR=IGNORE                                  \
   -DOPENGL_xmesa_INCLUDE_DIR=IGNORE                            \
   -DOPENGL_gl_LIBRARY=IGNORE                                  \
   -DOSMESA_INCLUDE_DIR=${MESA_INSTALL_PREFIX}/include         \
   -DOSMESA_LIBRARY=${MESA_INSTALL_PREFIX}/lib/libOSMesa.[so|a] \
  -DVTK_OPENGL_HAS_OSMESA=ON                                  \
   -DVTK_USE_OFFSCREEN=OFF                                     \
  ...
 
make -j32
make -j32 install
</source>
 
The rest on the configure and build process for ParaView remains as described on [[ParaView:Build And Install]]. Note that all of these build options with the exception of PARAVIEW_BUILD_QT_GUI are VTK options, thus this also describes how to configure VTK without ParaView.
 
== MPI-Parallel rendering with OSMesa Gallium llvmpipe state-tracker ==
When running ParaView in parallel with MPI one should consider how best to set the number of rendering threads used by the llvmpipe renderer. The number of rendering threads may be set using the ''LP_NUM_THREADS'' environment variable. Our [http://www.hpcvis.com/vis/images/xsede13/mesa-os-mesa-llvmpipe-edison.pdf parallel benchmarks of the surface LIC painter] on one NERSC Edison compute node showed that the best performance was achieved when the total number of rendering threads per node was equal to the number of available hyper threads. As of Mesa 9.2.2 only the fragment pipeline is threaded. This has some important implications for parallel rendering of large datasets. First, it's important to use a mix of MPI parallelism as well as rendering threads because MPI parallelism is the only option for speeding up vertex operations. Keep in mind that generally speaking with large datasets the vertex pipeline will have more work to do than the fragment pipeline. Also, note that only algorithms that have heavy fragment shader use, such as GPU accelerated volume rendering, surface LIC, depth peeling, etc, will see a substantial benefits when using large numbers of threads. Fixed-function algorithms will not generally see the same benefit. Finally note that Mesa has a hard coded compile time limit on the number of threads set by the ''LP_MAX_THREADS'' macro, which in v9.2.2 is 16 threads.


Some of these CMake variables don't show up until a few configure steps and it can be tricky to change their values afterwords. So when running cmake for the first time, one can use the following command:
{|
|[[File:Xsede-fig-llvmpipe-edison-1node-1rank-threads-sm.png|frame|'''Fig 1a''': Surface LIC benchmark 1 MPI process with between 1 and 16 rendering threads. The plot shows that vertex operations, shown in teal, aren't threaded, but account for roughly 1/2 of the serial rendering time. The other colors represent fragment operations that benefit from additional rendering threads.]]
|[[File:Xsede-fig-llvmpipe-edison-1node-nrank-16threads-sm.png|frame|'''Fig 1b''': Surface LIC benchmark with between 1 and 16 MPI processes and 16 rendering threads. The plot shows that MPI parallelism can be used to speedup vertex operations. Note that using more rendering threads than the number of hyperthreads available on the node slows down the fragment operations.]]
|}


  ccmake -D PARAVIEW_BUILD_QT_GUI:BOOL=OFF -D VTK_USE_X:BOOL=OFF -D VTK_OPENGL_HAS_OSMESA:BOOL=ON {PARAVIEW_SOURCE_DIR}
== Can ParaView be built with X11/GPU accelerated OpenGL and OSMesa in the same build? ==
No, this is not currently possible due to library symbol conflicts. You need to choose one or the other for each build. Note that it is possible to use OSMesa rendering in the server and hardware accelerated OpenGL in the client, by having two builds. In this scenario, the client configured for X11/GPU accelerated OpenGL, and the second for server configured to use OSMesa OpenGL. You'll need to run in client-server mode.


The rest on the configure and build process for ParaView remains as described on [[ParaView:Build And Install]].
= Link to the old page =
I'd like to remove this link. [[ParaView/ParaView_And_Mesa_3D_tmp]]

Latest revision as of 17:33, 10 December 2021

Read this first

ParaView and VTK make use of OpenGL for rendering. Most operating systems provide a default OpenGL library. If you're running a Windows or Mac OSX operating system, this page is not for you. On Windows download and install the latest drivers for your system's graphics hardware. On Apple Mac OSX just use the default OS provided drivers. On Linux the default OpenGL drivers are typically provided by Mesa. Mesa is an open source OpenGL implementation that supports a wide range of graphics hardware each with it's own back-end called a renderer. Mesa also provides several software based renderers for use on systems without graphics hardware. If you're running a Linux OS on a system without graphics hardware then this page is for you.

Mesa for your GPU

Before getting into details of Mesa graphics hardware drivers, a disclaimer. If you have NVIDIA or AMD graphics hardware Mesa is not your best option. To get the best performance from your graphics card you'll need to install the vendor provided driver. Vendor provided OpenGL drivers are typically much faster of a much higher quality than Mesa's which can be quite buggy. Many Linux distributions now provide thridparty closed source drivers through specialized package repositories. The details of installing vendor provided drivers in beyond the scope of this document. Please consult distribution and/or vendor specific documentation.

If you're running a Linux OS with X11 and graphics hardware and have not installed any OpenGL libraries you're probably already using Mesa! Note that the windowing system, in this case X11, is required for on-screen interactive rendering. On Linux systems the easiest way to install Mesa is through your distro's package manager. Most distros also provide packages for Mesa's software based renderers as well. Unfortunately, some OpenGL features may be disabled by your distro's package maintainers to avoid patent or other licensing restrictions. If you find that this is the case then you'll likely want to build Mesa from source. Given the depth and breadth of the universe of hardware that Mesa supports, building Mesa for use on systems with graphics hardware is beyond the scope of this article. Please consult the Mesa documentation directly.

Configuring VTK and ParaView with X11 or hardware accelerated Mesa only requires pointing VTK to the desired Mesa install and ensuring that LD_LIBRARY_PATH includes your Mesa install.

Mesa for your CPU (i.e. without graphics hardware, and OSMesa)

OpenGL applications require some mechanism to create and manage a rendering context. On Linux and Unix systems using X11 and GPUs, this is typically done with the GLX library (libGL) provided by a vendor supplied graphics driver. For systems without graphics cards or powerful GPUs, the Mesa 3D package provides the OSMesa library (Off-Screen Mesa) and several CPU based renderers providing OpenGL drivers. Here we will discuss 2 of OSMesa's renderers: llvmpipe and swr. They are threaded software based OpenGL drivers which use LLVM and clang for JIT compilation of GLSL shaders. The llvmpipe driver for OSMesa was added in the 2013 9.2.0 release and the swr driver in the 2016 12.0.0 release. The llvmpipe driver is available on most of Mesa's supported platforms while the swr driver is a much more highly optimized and threaded driver only available for newer x86_64 processors with AVX, AVX2, or AVX512 capability. They are currently the best software based OpenGL option for ParaView and VTK in terms of both OpenGL features and performance (swr on Intel CPUs and llvmpipe on all others). OSMesa classic swrast no longer supports the necessary OpenGL features required by newer VTK and ParaView versions. Mesa's softpipe, the single threaded reference software rederer, may still be useful in the case of a bug in the llvmpipe or swr drivers and provides a stable fallback option. When enabling llvmpipe, you will get softpipe for free.

Installing LLVM

LLVM is an intermediate language representation and is used by Mesa of internal representation and optimization of OpenGL shaders. As such, it is required as a dependency to build the optimized CPU drivers for Mesa, at least v6.0.0 (if not using swr then only 3.9.0 is required). Use the following to configure LLVM for use with Mesa,'s llvmpipe and swr drivers:

<source lang="bash">

  1. !/bin/bash
  1. Download the latest LLVM source

curl -L -O https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.1/llvm-12.0.1.src.tar.xz

  1. Extract

tar -xvf llvm-12.0.1.src.tar.xz

  1. Configure

mkdir llvm-12.0.1.bld cd llvm-12.0.1.bld cmake \

 -DCMAKE_BUILD_TYPE=Release                    \
 -DCMAKE_INSTALL_PREFIX=/path/to/install/llvm  \
 -DLLVM_BUILD_LLVM_DYLIB=ON                    \
 -DLLVM_ENABLE_RTTI=ON                         \
 -DLLVM_INSTALL_UTILS=ON                       \
 -DLLVM_TARGETS_TO_BUILD=X86                   \
 ../llvm-12.0.1.src
  1. Build and install

make -j8 make install </source>

Some explanation of these options:

-DCMAKE_BUILD_TYPE=Release
Make sure we use a release build, not debug
-DLLVM_BUILD_LLVM_DYLIB=ON
Build a dynamic libLLVM.so in addition to the a collection of static component libraries
-DLLVM_ENABLE_RTTI=ON
Certain run-time type information (RTTI) features are used by Mesa and need to be enabled
-DLLVM_INSTALL_UTILS=ON
Some of the command line utilities are need by the Mesa build that are not installed by default
-DLLVM_TARGETS_TO_BUILD=X86
The default is to build all supported backend (PowerPC, ARM, etc.). While that's certainly do-able, it's entirely unnecessary for our purposes so restrict to only the one we need.

Installing Mesa llvmpipe and swr drivers

The Mesa 21.3.1 OSMesa state-tracker with either llvmpipe or swr driver is the preferred CPU based renderer for headless ParaView and VTK configurations without GPU hardware. The following shows how to configure Mesa with a system installed LLVM. Our strategy is to configure Mesa with the options necessary to provide a minimal build with only OSMesa and it's associated drivers. This greatly simplifies the build as many of the other drivers/renderers depend on X11 or other libraries. The following set of options are from Mesa v21.3.1 release; older or newer releases may require slightly different options.

Before compiling, the following dependencies will need to be installed:

  • meson: The build system used by Mesa since v19
  • ninja: a highly parallel build tool used by meson
  • python 3.x: Python 2x is no longer supported
  • mako: A python module used by the mesa's build system

<source lang="bash">

  1. !/bin/bash
  1. Download and extract the latest Mesa source

curl -L -O https://archive.mesa3d.org//mesa-21.3.1.tar.xz tar -xvf mesa-21.3.1.tar.xz

  1. Configure Mesa

mkdir mesa-21.3.10-build cd mesa-21.3.10-build

meson \

 ../mesa-21.3.1               \
 --buildtype=release          \
 --prefix=/path/to/install    \
 -Dvulkan-drivers=            \
 -Ddri-drivers=               \
 -Dgallium-vdpau=disabled     \
 -Dgallium-xvmc=disabled      \
 -Dgallium-omx=disabled       \
 -Dgallium-va=disabled        \
 -Dgallium-xa=disabled        \
 -Dgallium-nine=false         \
 -Dgallium-opencl=disabled    \
 -Dbuild-tests=false          \
 -Degl=disabled               \
 -Dgbm=disabled               \
 -Dglx=disabled               \
 -Dplatforms=                 \
 -Dglvnd=false                \
 -Dosmesa=true                \
 -Dopengl=true                \
 -Dgles1=disabled             \
 -Dgles2=disabled             \
 -Dshared-glapi=enabled       \
 -Dllvm=enabled               \
 -Dshared-llvm=enabled        \
 -Dgallium-drivers=swrast,swr

ninja ninja install </source>

Some explanation of these options:

--buildtype=release
The default Meson configuration is to build optimized debug builds; this ensures that a fully optimized release library is built without the additional debugging checks. This is particularly important when enabling the swr driver as there are known segfaults in the swr driver from internal debug checks when using ParaView and VTK.
-Dvulkan-drivers=
The Vulkan API is not being used so we're explicitly disabling it.
-Ddri-drivers=
Disable any drivers using Mesa's legacy driver infrastructure.
-Dgallium-vdpau=disabled -Dgallium-xvmc=disabled -Dgallium-omx=disabled -Dgallium-va=disabled -Dgallium-xa=disabled -Dgallium-nine=false -Dgallium-opencl=disabled
Mesa comes with several different state trackers on by default. We don't need any of them so we explicitly disable them.
-Dbuild-tests=false
Tests are only useful if you're actually developing Mesa.
-Degl=disabled -Dgbm=disabled
Disable the EGL library as we're not using here.
-Dglx=disabled -Dplatforms=
We're explicitly only building OSMesa so the GLX and EGL front-ends, as well as their related options, are explicitly disabled. Note: If you also need to enable the GLX (possibly if trying to run the ParaView GUI over VNC) then change these to -Dglx=gallium-xlib -Dplatforms=x11.
-Dglvnd=false
GLVND is the next generation OpenGL library infrastructure on Linux for GLX and EGL, both of which are disabled above. Note: The complexities of the GLVND infrastructure are outside the scope of this guide, but if enabling GLX above you probably still want to disable this.
-Dosmesa=true
OSMesa is the only frontend we're enabling.
-Dopengl=true -Dgles1=disabled -Dgles2=disabled
Specify which APIs to enable. Mesa will try to enable OpenGL, OpenGL ES, and OpenGL ES2 by default. We only need "normal OpenGL" so we're explicitly disabling the others.
-Dllvm=enabled -Dshared-llvm=enabled
Enable the use of LLVM based drivers.
-Dshared-glapi=enabled
If using swr this helps reduce library sizes by breaking out common functionality used by libOSMesa and libSWR.
-Dgallium-drivers=swrast,swr
The swrast driver enables the softpipe render and, if llvm is enabled (which it is in the previous option), the llvmpipe driver. The swr driver is the optimized Intel-specific multithreaded driver, better known as OpenSWR. Leave swr out if you are on an older CPU without AVX capability or on a non-Intel architecture.

Using the llvmpipe and swr drivers

Changing drivers at runtime

Using the above configuration, the resulting mesa will have a libOSMesa.so (and possibly libGL.so) containing only the softpipe, llvmpipe, and swr drivers, with llvmpipe always being the default. To change drivers at runtime, use the GALLIUM_DRIVER environment variable, setting it to either softpipe, llvmpipe, or swr:

Default behavior

<source lang="bash"> $ glxinfo | grep "^OpenGL \(renderer\|core profile version\|vendor\)" OpenGL vendor string: Mesa/X.org OpenGL renderer string: llvmpipe (LLVM 12.0.1, 256 bits) OpenGL core profile version string: 4.5 (Core Profile) Mesa 21.3.1 </source>

softpipe

<source lang="bash"> $ export GALLIUM_DRIVER=softpipe $ glxinfo | grep "^OpenGL \(renderer\|core profile version\|vendor\)" OpenGL vendor string: Mesa/X.org OpenGL renderer string: softpipe OpenGL core profile version string: 3.3 (Core Profile) Mesa 21.3.1 </source>

llvmpipe

<source lang="bash"> $ GALLIUM_DRIVER=llvmpipe $ glxinfo | grep "^OpenGL \(renderer\|core profile version\|vendor\)" OpenGL vendor string: Mesa/X.org OpenGL renderer string: llvmpipe (LLVM 12.0.1, 256 bits) OpenGL core profile version string: 4.5 (Core Profile) Mesa 21.3.1 </source>

Use the LP_NUM_THREADS environment variable to set the number of threads used for pixel shaders; vertex shaders are processed single threaded. This is currently limited to 16 threads. In the context of ParaView and VTK, this means that geometry operations will be single threaded but pixel operation (like volume rendering) can still be parallelized.
swr

<source lang="bash"> $ GALLIUM_DRIVER=swr $ glxinfo | grep "^OpenGL \(renderer\|core profile version\|vendor\)" OpenGL vendor string: Intel Corporation OpenGL renderer string: SWR (LLVM 12.0.1, 256 bits) OpenGL core profile version string: 3.3 (Core Profile) Mesa 21.3.1 </source>

Use the environment variable KNOB_MAX_WORKER_THREADS to specify the number of threads used. swr does an effective job and parallelizing most aspect of rendering, in contract to llvmpipe which only parallelizes pixel shaders. This currently has a limit of 256 threads.

A comparison of OSMesa Gallium llvmpipe, OSMesa classic and, GPU Accelerated Rendering Performance

    • Note that this is currently outdated and while the relative performance numbers are still valid, OpenSWR is not present in these tests.

The following chart shows the run time of VTK's Rendering ctests with OSMesa classic, Gallium llvmpipe OSMesa state-tracker, and an ATI Radeon HD 7870. The CPU on the test sytsem is a 4 core(8 thread) Intel(R) Core(TM) i7-4771 CPU @ 3.50GHz. The ATI driver used is AMD Catalyst 13.11-beta6. Run times were obtained by running each ctest twice consecutively discarding the first time. Tests that took less than 1 second were discarded, as were tests that failed on any one of the renderers. Note results are reported in cases where Classic OSMesa doesn't provide all the extensions, but Gallium llvmpipe does. For example classic OSMesa doesn't provide render buffer float. In these cases the run time reported for the classic OSMesa is ~0.

The results show that Gallium llvmpipe OSMesa state tracker is quite a bit better across the board and supports more rendering algorithms than OSMesa classic. This especially so for GPU accelerated volume rendering.

Osmesa-rendering-sm.png

Configuring ParaView for use with OSMesa

Configure ParaView as described on ParaView:Build And Install. The only cmake variables that need to be updated are:

<source lang="bash">

  1. !/bin/bash

cmake \

 ...
 -DPARAVIEW_BUILD_QT_GUI=OFF                                  \
 -DVTK_USE_X=OFF                                              \
 -DOPENGL_INCLUDE_DIR=IGNORE                                  \
 -DOPENGL_xmesa_INCLUDE_DIR=IGNORE                            \
 -DOPENGL_gl_LIBRARY=IGNORE                                   \
 -DOSMESA_INCLUDE_DIR=${MESA_INSTALL_PREFIX}/include          \
 -DOSMESA_LIBRARY=${MESA_INSTALL_PREFIX}/lib/libOSMesa.[so|a] \
 -DVTK_OPENGL_HAS_OSMESA=ON                                   \
 -DVTK_USE_OFFSCREEN=OFF                                      \
 ...

make -j32 make -j32 install </source>

The rest on the configure and build process for ParaView remains as described on ParaView:Build And Install. Note that all of these build options with the exception of PARAVIEW_BUILD_QT_GUI are VTK options, thus this also describes how to configure VTK without ParaView.

MPI-Parallel rendering with OSMesa Gallium llvmpipe state-tracker

When running ParaView in parallel with MPI one should consider how best to set the number of rendering threads used by the llvmpipe renderer. The number of rendering threads may be set using the LP_NUM_THREADS environment variable. Our parallel benchmarks of the surface LIC painter on one NERSC Edison compute node showed that the best performance was achieved when the total number of rendering threads per node was equal to the number of available hyper threads. As of Mesa 9.2.2 only the fragment pipeline is threaded. This has some important implications for parallel rendering of large datasets. First, it's important to use a mix of MPI parallelism as well as rendering threads because MPI parallelism is the only option for speeding up vertex operations. Keep in mind that generally speaking with large datasets the vertex pipeline will have more work to do than the fragment pipeline. Also, note that only algorithms that have heavy fragment shader use, such as GPU accelerated volume rendering, surface LIC, depth peeling, etc, will see a substantial benefits when using large numbers of threads. Fixed-function algorithms will not generally see the same benefit. Finally note that Mesa has a hard coded compile time limit on the number of threads set by the LP_MAX_THREADS macro, which in v9.2.2 is 16 threads.

Fig 1a: Surface LIC benchmark 1 MPI process with between 1 and 16 rendering threads. The plot shows that vertex operations, shown in teal, aren't threaded, but account for roughly 1/2 of the serial rendering time. The other colors represent fragment operations that benefit from additional rendering threads.
Fig 1b: Surface LIC benchmark with between 1 and 16 MPI processes and 16 rendering threads. The plot shows that MPI parallelism can be used to speedup vertex operations. Note that using more rendering threads than the number of hyperthreads available on the node slows down the fragment operations.

Can ParaView be built with X11/GPU accelerated OpenGL and OSMesa in the same build?

No, this is not currently possible due to library symbol conflicts. You need to choose one or the other for each build. Note that it is possible to use OSMesa rendering in the server and hardware accelerated OpenGL in the client, by having two builds. In this scenario, the client configured for X11/GPU accelerated OpenGL, and the second for server configured to use OSMesa OpenGL. You'll need to run in client-server mode.

Link to the old page

I'd like to remove this link. ParaView/ParaView_And_Mesa_3D_tmp