White Papers

Ready Solutions Engineering Test Results
Performance of LS-DYNA on Singularity Containers
Authors: Nirmala Sundararajan, Joshua Weage, Nishanth Dandapanthula
HPC Innovation Lab, February 2018
Overview
We often look at containers today and see the potential of accelerated application delivery, scaling and portability and wonder how
we ever got by without them. This blog discusses the performance of LSTC LS-DYNA® within Singularity containers and on bare
metal. This blog is the third in the series of blogs regarding container technology by the HPC Engineering team. The first blog
Containers, Docker, Virtual Machines and HPC explored the use of containers. The second blog Containerizing HPC Applications
with Singularity provided an introduction to Singularity and discussed the challenges of using Singularity in HPC environments. This
third blog will focus on determining if there is a performance penalty while running the application (LS-DYNA) in a containerized
environment.
Containerizing LS-DYNA using Singularity
LS-DYNA is a general-purpose finite element (FEA) program capable of simulating complex real world problems. It is used in multiple
engineering disciplines such as automobile, aerospace, construction, military, manufacturing, and bioengineering
industries. An application specific container is a lightweight bundle of an application and its dependencies. The first step in creating
the container for LS-DYNA would be to have a minimal operating system (CentOS 7.3 in this case), basic tools to run the application
and support for InfiniBand within the container. With this, the container gets a runtime environment, system tools, and libraries. The
next step would be to install the application binaries within the container. The definition file used to create the LS-DYNA container is
given below. In this file, the bootstrap references the kind of base to be used and a number of options are available. “shub” pulls
images hosted on Singularity Hub, “docker” pulls images from Docker Hub and here yum is used to install Centos-7.
Definition File:
BootStrap: yum
OSVersion: 7
MirrorURL: http://vault.centos.org/7.3.1611/os/x86_64/
Include: yum
%post
# basic-tools and dev-tools
yum -y install evince wget vim zip unzip gzip tar perl
yum -y groupinstall "Development tools" --nogpgcheck
# InfiniBand drivers
yum -y --setopt=group_package_types=optional,default,mandatory groupinstall "InfiniBand
Support"
yum -y install rdma
yum -y install libibverbs-devel libsysfs-devel
yum -y install infinipath-psm
# Platform MPI
mkdir -p /home/inside/platform_mpi

Summary of content (5 pages)