_ _ _______ _ _ _ _
| \ | |__ | | | | | | | |
| | | | | | || | | | __ _ __ | |_ ___ ___
| . | | | | __ | | | / _
|/ ` | ' \ / _ / |
| |\ | | | | | | | | || (| | (| | | | | () __
|| _| || || || |_,|_, || ||_/|_/
/ |
|/
High-order Nonlocal Transport Lagrangian Hydrodynamics Miniapp
Laghos (LAGrangian High-Order Solver) is a miniapp that solves the time-dependent Euler equations of compressible gas dynamics in a moving Lagrangian frame using unstructured high-order finite element spatial discretization and explicit high-order time-stepping.
NTH-Laghos extends the original hydrodynamic model by providing closure relations corresponding to traditional Navier-Stokes parabolic terms.
Laghos is based on the discretization method described in the following article:
V. Dobrev, Tz. Kolev and R. Rieben,
High-order curvilinear finite element methods for Lagrangian hydrodynamics,
SIAM Journal on Scientific Computing, (34) 2012, pp.B606–B641.
Laghos captures the basic structure of many compressible shock hydrocodes, including the BLAST code at Lawrence Livermore National Laboratory. The miniapp is built on top of a general discretization library, MFEM, thus separating the pointwise physics from finite element and meshing concerns.
The Laghos miniapp is part of the CEED software suite, a collection of software benchmarks, miniapps, libraries and APIs for efficient exascale discretizations based on high-order finite element and spectral element methods. See http://github.com/ceed for more information and source code availability.
The CEED research is supported by the Exascale Computing Project (17-SC-20-SC), a collaborative effort of two U.S. Department of Energy organizations (Office of Science and the National Nuclear Security Administration) responsible for the planning and preparation of a capable exascale ecosystem, including software, applications, hardware, advanced system engineering and early testbed platforms, in support of the nation’s exascale computing imperative.
The problem that Laghos is solving is formulated as a big (block) system of ordinary differential equations (ODEs) for the unknown (high-order) velocity, internal energy and mesh nodes (position). The left-hand side of this system of ODEs is controlled by mass matrices (one for velocity and one for energy), while the right-hand side is constructed from a force matrix.
Laghos supports two options for deriving and solving the ODE system, namely the full assembly and the partial assembly methods. Partial assembly is the main algorithm of interest for high orders. For low orders (e.g. 2nd order in 3D), both algorithms are of interest.
The full assembly options relies on constructing and utilizing global mass and force matrices stored in compressed sparse row (CSR) format.
The partial assembly option defines only the local action of those matrices, which is then used to perform all necessary operations. As the local action is defined by utilizing the tensor structure of the finite element spaces, the amount of data storage, memory transfers, and FLOPs are lower (especially for higher orders).
Other computational motives in Laghos include the following:
- Support for unstructured meshes, in 2D and 3D, with quadrilateral and hexahedral elements (triangular and tetrahedral elements can also be used, but with the less efficient full assembly option). Serial and parallel mesh refinement options can be set via a command-line flag.
- Explicit time-stepping loop with a variety of time integrator options. Laghos supports Runge-Kutta ODE solvers of orders 1, 2, 3, 4 and 6.
- Continuous and discontinuous high-order finite element discretization spaces of runtime-specified order.
- Moving (high-order) meshes.
- Separation between the assembly and the quadrature point-based computations.
- Point-wise definition of mesh size, time-step estimate and artificial viscosity coefficient.
- Constant-in-time velocity mass operator that is inverted iteratively on each time step. This is an example of an operator that is prepared once (fully or partially assembled), but is applied many times. The application cost is dominant for this operator.
- Time-dependent force matrix that is prepared every time step (fully or partially assembled) and is applied just twice per "assembly". Both the preparation and the application costs are important for this operator.
- Domain-decomposed MPI parallelism.
- Optional in-situ visualization with GLVis and data output for visualization / data analysis with VisIt.
- The file
nth.cpp
contains the main driver with the time integration loop starting around line 370. - In each time step, the ODE system of interest is constructed and solved by
the class
LagrangianHydroOperator
, defined around line 312 oflaghos.cpp
and implemented in fileslaghos_solver.hpp
andlaghos_solver.cpp
. - All quadrature-based computations are performed in the function
LagrangianHydroOperator::UpdateQuadratureData
inlaghos_solver.cpp
. - Depending on the chosen option (
-pa
for partial assembly or-fa
for full assembly), the functionLagrangianHydroOperator::Mult
uses the corresponding method to construct and solve the final ODE system. - The full assembly computations for all mass matrices are performed by the MFEM
library, e.g., classes
MassIntegrator
andVectorMassIntegrator
. Full assembly of the ODE's right hand side is performed by utilizing the classForceIntegrator
defined inlaghos_assembly.hpp
. - The partial assembly computations are performed by the classes
ForcePAOperator
andMassPAOperator
defined inlaghos_assembly.hpp
. - When partial assembly is used, the main computational kernels are the
Mult*
functions of the classesMassPAOperator
andForcePAOperator
implemented in filelaghos_assembly.cpp
. These functions have specific versions for quadrilateral and hexahedral elements. - The orders of the velocity and position (continuous kinematic space)
and the internal energy (discontinuous thermodynamic space) are given
by the
-ok
and-ot
input parameters, respectively.
NTH-Laghos has the following external dependencies:
-
hypre, used for parallel linear algebra, we recommend version 2.10.0b
https://computation.llnl.gov/casc/hypre/software.html, -
METIS, used for parallel domain decomposition (optional), we recommend version 4.0.3
http://glaros.dtc.umn.edu/gkhome/metis/metis/download -
MFEM, used for (high-order) finite element discretization, its GitHub master branch
https://github.com/mfem/mfem
To build the miniapp, first download hypre and METIS from the links above and put everything on the same level as NTH-Laghos:
~> ls
NTH/ hypre-2.10.0b.tar.gz metis-4.0.tar.gz
Build hypre:
~> tar -zxvf hypre-2.10.0b.tar.gz
~> cd hypre-2.10.0b/src/
~/hypre-2.10.0b/src> ./configure --disable-fortran
~/hypre-2.10.0b/src> make -j
~/hypre-2.10.0b/src> cd ../..
Build METIS:
~> tar -zxvf metis-4.0.3.tar.gz
~> cd metis-4.0.3
~/metis-4.0.3> make
~/metis-4.0.3> cd ..
~> ln -s metis-4.0.3 metis-4.0
Clone and build the parallel version of MFEM:
~> git clone [email protected]:mfem/mfem.git ./mfem
~> cd mfem/
~/mfem> make parallel -j
~/mfem> cd ..
Clone and build Laghos:
~> git clone https://github.com/CEED/Laghos.git ./Laghos
~> cd Laghos/
~> make
Clone and build NTH-Laghos:
~> git clone https://github.com/homijan/NTH.git ./NTH
~> cd NTH/
~> make
For more details, see the MFEM building page.
The main problem of interest for Laghos is the Sedov blast wave (-p 1
) with
partial assembly option (-pa
).
Some sample runs in 2D and 3D respectively are:
mpirun -np 8 laghos -p 1 -m data/square01_quad.mesh -rs 3 -tf 0.8 -no-vis -pa
mpirun -np 8 laghos -p 1 -m data/cube01_hex.mesh -rs 2 -tf 0.6 -no-vis -pa
The latter produces the following density plot (when run with -vis
instead of -no-vis
)
Laghos includes also a smooth test problem, that exposes all the principal computational kernels of the problem except for the artificial viscosity evaluation.
Some sample runs in 2D and 3D respectively are:
mpirun -np 8 laghos -p 0 -m data/square01_quad.mesh -rs 3 -tf 0.5 -no-vis -pa
mpirun -np 8 laghos -p 0 -m data/cube01_hex.mesh -rs 1 -cfl 0.1 -tf 0.25 -no-vis -pa
The latter produces the following velocity magnitude plot (when run with -vis
instead of -no-vis
)
Well known three-material problem combines shock waves and vorticity, thus examining the complex computational abilities of Laghos.
Some sample runs in 2D and 3D respectively are:
mpirun -np 8 laghos -p 3 -m data/rectangle01_quad.mesh -rs 2 -tf 2.5 -cfl 0.025 -no-vis -pa
mpirun -np 8 laghos -p 3 -m data/box01_hex.mesh -rs 1 -tf 2.5 -cfl 0.05 -no-vis -pa
The latter produces the following specific internal energy plot (when run with -vis
instead of -no-vis
)
To make sure the results are correct, we tabulate reference final iterations
(step
), time steps (dt
) and energies (|e|
) for the nine runs listed above:
mpirun -np 8 laghos -p 0 -m data/square01_quad.mesh -rs 3 -tf 0.75 -no-vis -pa
mpirun -np 8 laghos -p 0 -m data/cube01_hex.mesh -rs 1 -tf 0.75 -no-vis -pa
mpirun -np 8 laghos -p 1 -m data/square01_quad.mesh -rs 3 -tf 0.8 -no-vis -pa
mpirun -np 8 laghos -p 1 -m data/cube01_hex.mesh -rs 2 -tf 0.6 -no-vis -pa
mpirun -np 8 laghos -p 2 -m data/segment01.mesh -rs 5 -tf 0.2 -no-vis -fa
mpirun -np 8 laghos -p 3 -m data/rectangle01_quad.mesh -rs 2 -tf 2.5 -no-vis -pa
mpirun -np 8 laghos -p 3 -m data/box01_hex.mesh -rs 1 -tf 2.5 -no-vis -pa
run |
step |
dt |
e |
---|---|---|---|
1. | 339 | 0.000702 | 49.6955373474 |
2. | 1041 | 0.000121 | 3390.9635545471 |
3. | 1150 | 0.002271 | 46.3055694447 |
4. | 561 | 0.000360 | 134.0937837800 |
5. | 414 | 0.000339 | 32.0120759651 |
6. | 4968 | 0.000048 | 147.2685142131 |
7. | 882 | 0.002225 | 149.6915209641 |
An implementation is considered valid if the final energy values are all within round-off distance from the above reference values.
Each time step in Laghos contains 4 major distinct computations:
- The inversion of the global kinematic mass matrix (CG H1).
- The inversion of the local thermodynamic mass matrices (CG L2).
- The force operator evaluation from degrees of freedom to quadrature points (Forces).
- The physics kernel in quadrature points (UpdateQuadData).
By default Laghos is instrumented to report the total execution times and rates, in terms of millions of degrees of freedom (megadofs), for each of these computational phases.
Laghos also reports the total rate for these major kernels, which is a proposed Figure of Merit (FOM) for benchmarking purposes. Given a computational allocation, the FOM should be reported for different problem sizes and finite element orders, as illustrated in the sample scripts in the timing directory.
In addition to the main MPI-based CPU implementation in https://github.com/CEED/Laghos, the following versions of Laghos have been developed
- A serial version in the serial directory.
- GPU version based on OCCA.
You can reach the Laghos team by emailing [email protected] or by leaving a comment in the issue tracker.
The following copyright applies to each file in the CEED software suite, unless otherwise stated in the file:
Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights reserved.
See files LICENSE and NOTICE for details.