Unverified Commit fa0cc2c2 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

update singularity definition files

parent 5542ad31
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -49,8 +49,11 @@ make
| centos7.def                    | CentOS 7.x with EPEL enabled, no LaTeX         |
| centos8.def                    | CentOS 8.x with EPEL enabled                   |
| fedora30_mingw.def             | Fedora 30 with MinGW cross-compiler toolchain  |
| fedora32_mingw.def             | Fedora 32 with MinGW cross-compiler toolchain  |
| ubuntu16.04.def                | Ubuntu 16.04LTS with MPI == OpenMPI, no LaTeX  |
| ubuntu18.04.def                | Ubuntu 18.04LTS with MPI == OpenMPI            |
| ubuntu18.04_amd_rocm.def       | Ubuntu 18.04LTS with AMD ROCm toolkit          |
| ubuntu18.04_amd_rocm_cuda.def  | Ubuntu 18.04LTS with -"- plus Nvidia CUDA 10.2 |
| ubuntu18.04_nvidia.def         | Ubuntu 18.04LTS with Nvidia CUDA 10.2 toolkit  |
| ubuntu18.04_intel_opencl.def   | Ubuntu 18.04LTS with Intel OpenCL runtime      |
| ubuntu20.04.def                | Ubuntu 20.04LTS with MPI == OpenMPI            |
+5 −1
Original line number Diff line number Diff line
@@ -6,13 +6,17 @@ From: centos:7
        yum -y update
        yum -y install vim-enhanced \
            ccache gcc-c++ gcc-gfortran clang gdb valgrind-openmpi \
            make cmake cmake3 ninja-build patch which file git \
            make cmake cmake3 ninja-build patch which file git Lmod \
            libpng-devel libjpeg-devel openmpi-devel mpich-devel python-devel \
            python-virtualenv fftw-devel voro++-devel eigen3-devel gsl-devel openblas-devel enchant

%environment
        LC_ALL=C
        export LC_ALL
        unset LOADEDMODULES
        . /etc/profile.d/z00_lmod.sh
        module purge
        module load mpi

%labels
        Author akohlmey
+4 −0
Original line number Diff line number Diff line
@@ -19,6 +19,10 @@ From: centos:8
%environment
        LC_ALL=C
        export LC_ALL
        unset LOADEDMODULES
        . /etc/profile.d/modules.sh
        module purge
        module load mpi

%labels
        Author akohlmey
+6 −0
Original line number Diff line number Diff line
@@ -36,6 +36,12 @@ From: fedora:30
%environment
        LC_ALL=C
        export LC_ALL
        # we need to reset any module variables
        # inherited from the host.
        unset LOADEDMODULES
        source /etc/profile.d/modules.sh
        module purge
        module load mpi

%labels
        Author akohlmey
+47 −0
Original line number Diff line number Diff line
BootStrap: docker
From: fedora:32

%post
        dnf -y update
        dnf -y install vim-enhanced git file make cmake patch which file Lmod \
               ninja-build clang libomp-devel libubsan libasan libtsan \
               dos2unix findutils rsync python-devel libjpeg-devel libpng-devel \
               ccache gcc-c++ gcc-gfortran gdb valgrind eigen3-devel openblas-devel \
               openmpi-devel mpich-devel fftw-devel voro++-devel gsl-devel \
               mingw-filesystem-base mingw32-nsis mingw-binutils-generic \
               mingw32-filesystem mingw32-pkg-config \
               mingw64-filesystem mingw64-pkg-config \
               mingw32-crt mingw32-headers mingw32-binutils \
               mingw64-crt mingw64-headers mingw64-binutils \
               mingw32-cpp mingw32-gcc mingw32-gcc-gfortran mingw32-gcc-c++ \
               mingw64-cpp mingw64-gcc mingw64-gcc-gfortran mingw64-gcc-c++ \
               mingw32-libgomp mingw64-libgomp \
               mingw32-winpthreads mingw64-winpthreads \
               mingw32-winpthreads-static mingw64-winpthreads-static \
               mingw32-eigen3 mingw64-eigen3 \
               mingw32-libjpeg-turbo mingw64-libjpeg-turbo \
               mingw32-libjpeg-turbo-static mingw64-libjpeg-turbo-static \
               mingw32-libpng mingw64-libpng \
               mingw32-libpng-static mingw64-libpng-static \
               mingw32-zlib mingw64-zlib \
               mingw32-zlib-static mingw64-zlib-static \
               mingw32-expat mingw64-expat \
               mingw64-expat-static mingw32-expat-static \
               mingw32-sqlite-static mingw64-sqlite-static \
               enchant python3-virtualenv doxygen \
               texlive-latex-fonts texlive-pslatex texlive-collection-latexrecommended \
               texlive-latex texlive-latexconfig doxygen-latex texlive-collection-latex \
               texlive-latex-bin texlive-lualatex-math texlive-fncychap texlive-tabulary \
               texlive-framed texlive-wrapfig texlive-upquote texlive-capt-of \
               texlive-needspace texlive-titlesec texlive-anysize texlive-dvipng

%environment
        LC_ALL=C
        export LC_ALL
        unset LOADEDMODULES
        . /etc/profile.d/modules.sh
        module purge
        module load mpi

%labels
        Author akohlmey
Loading