Skip to content

Commit

Permalink
Add lammps intel mpi (#58)
Browse files Browse the repository at this point in the history
* add lammps build with intel mpi

Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Sep 5, 2023
1 parent e5f146e commit f0b1f5b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
27 changes: 27 additions & 0 deletions lammps-intel-mpi-libfabric-rocky/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
ARG tag="8"
FROM ghcr.io/rse-ops/spack-intel-mpi-libfabric:tag-${tag}
USER root
WORKDIR /opt/
RUN yum update -y && \
yum install -y fftw3-devel fftw3

# install laamps alongside spack
RUN cd /opt/spack-environment && \
. spack/share/spack/setup-env.sh && \
. /opt/intel/mpi/latest/env/vars.sh && \
git clone --depth 1 --branch stable_29Sep2021_update2 https://github.com/lammps/lammps.git /opt/lammps && \
cd /opt/lammps && \
mkdir build && \
cd build && \
. /etc/profile && \
cmake ../cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DPKG_REAXFF=yes -DBUILD_MPI=yes -DPKG_OPT=yes -DFFT=FFTW3 -DCMAKE_PREFIX_PATH=/opt/intel/mpi/2021.8.0 -DCMAKE_PREFIX_PATH=/usr/lib/x86_64-linux-gnu && \
make && \
make install

# ensure lmp executable is on path for flux user
# And anyone can interact with lammps examples
RUN mkdir -p /home/flux && \
mv /opt/lammps/examples /home/flux/examples && \
chown -R flux /home/flux/examples

WORKDIR /home/flux/examples/reaxff/HNS
6 changes: 6 additions & 0 deletions lammps-intel-mpi-libfabric-rocky/uptodate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dockerbuild:
build_args:
tag:
key: tag
versions:
- "8"

0 comments on commit f0b1f5b

Please sign in to comment.