Skip to content

Commit 59175af

Browse files
authored
Merge pull request #17 from gjbex/development
Development
2 parents aca3723 + f4219dd commit 59175af

9 files changed

+1243
-2
lines changed

containers_for_hpc.pptx

-2.9 KB
Binary file not shown.

examples/hpccm/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,17 @@ recipe.
88
## What is it?
99

1010
1. `simple.py`: very simple example.
11+
1. `development_base.py`: base recipe for a development container.
12+
1. `development_c++.py`: recipe for a C++ development container.
13+
1. `development_cuda_base.py`: base recipe for CUDA development.
14+
1. `development_cuda.py`: recipe for CUDA development.
15+
1. `development_intel_base.py`: base recipe for development using
16+
Intel compilers.
1117
1. `development_node`: definition of a development node.
1218
1. `mssql_client`: defintion of a container with Microsoft
1319
SQL Server drivers, ODBC, FreeTDS and a conda environment
1420
for a client script.
1521
1. `r_container`: definition of an image to run R.
1622
1. `oneapi`: examples of images containing OneAPI development tools.
23+
1. `nvidia_hpc_sdk.py`: recipe for development using NVIDA HPC SDK.
24+
1 `rapids.py`: recipe for an image to run NVIDIA Rapids.

examples/hpccm/development_cuda.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
'''Recipe to create either a docker container or Singularity image
2+
for a compute node on which users can log in using password authentication.
3+
A number of editors, git, make, CMake, GCC and Open-MPI
4+
5+
Usage:
6+
$ hpccm --recipe development_cuda.py --format docker
7+
$ hpccm --recipe development_cuda.py --format singularity
8+
'''
9+
10+
from pathlib import Path
11+
12+
# Choose a base image
13+
Stage0.baseimage('nvcr.io/nvidia/nvhpc:24.3-devel-cuda_multi-ubuntu22.04')
14+
15+
# Install CMake
16+
Stage0 += cmake(eula=True)
17+
18+
# add run script, i.e., start bash
19+
Stage0 += runscript(commands=['/bin/bash'])

examples/hpccm/development_cuda_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from pathlib import Path
1111

1212
# Choose a base image
13-
Stage0.baseimage('nvcr.io/nvidia/nvhpc:23.11-devel-cuda_multi-ubuntu22.04')
13+
Stage0.baseimage('nvcr.io/nvidia/nvhpc:24.3-devel-cuda_multi-ubuntu22.04')
1414

1515
# Install CMake
1616
Stage0 += cmake(eula=True)

examples/hpccm/nvidia_hpc_sdk.py

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
'''Recipe to create either a docker container or Singularity image
2+
for a compute node on which users can log in using password authentication.
3+
A number of editors, git, make, CMake, GCC and Open-MPI
4+
5+
Usage:
6+
$ hpccm --recipe development_cuda.py --format docker
7+
$ hpccm --recipe development_cuda.py --format singularity
8+
'''
9+
10+
from pathlib import Path
11+
12+
# Choose a base image
13+
Stage0.baseimage('nvcr.io/nvidia/nvhpc:24.7-devel-cuda_multi-ubuntu22.04')
14+
15+
# Install CMake
16+
Stage0 += cmake(eula=True)
17+
18+
# Install editor and other tools
19+
Stage0 += apt_get(ospackages=['vim', 'less', 'ack', ])
20+
21+
# Install archive and compression software and utitlies
22+
Stage0 += apt_get(ospackages=['tar', 'gzip', 'bzip2', 'wget', 'ca-certificates', ])
23+
24+
# Install version control
25+
Stage0 += apt_get(ospackages=['git', 'openssh-client', ])
26+
27+
# Install debugging tools
28+
Stage0 += apt_get(ospackages=['valgrind', 'strace', ])
29+
30+
# Install benchmarking tools
31+
Stage0 += apt_get(ospackages=['hyperfine'])
32+
33+
# add run script, i.e., start bash
34+
Stage0 += runscript(commands=['/bin/bash'])

examples/hpccm/oneapi/oneapi-for-nvidia-gpus-2024.1.0-cuda-12.0-linux.sh

+1,093
Large diffs are not rendered by default.

examples/hpccm/oneapi/oneapi_hpc.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,16 @@
1212

1313

1414
# Choose a base image
15-
Stage0.baseimage('intel/oneapi-hpckit')
15+
Stage0.baseimage('intel/hpckit:2024.1.0-devel-ubuntu22.04')
1616

17+
# Install NVIDIA backend
18+
Stage0 += copy(src='oneapi-for-nvidia-gpus-2024.1.0-cuda-12.0-linux.sh',
19+
dest='/')
20+
Stage0 += shell(commands=['/oneapi-for-nvidia-gpus-2024.1.0-cuda-12.0-linux.sh -y'])
21+
22+
# Install build tools
23+
Stage0 += cmake(eula=True)
24+
1725
# Install editor and other tools
1826
Stage0 += apt_get(ospackages=['vim', 'neovim', 'less', 'ack', 'tmux', ])
1927

examples/hpccm/r_container/r_container.py

+13
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,26 @@
1212
# Install utilities
1313
Stage0 += apt_get(ospackages=['gist', 'wget', 'rclone', ])
1414

15+
# Install tools to install R
16+
Stage0 += apt_get(ospackages=['software-properties-common', 'apt-transport-https', 'dirmngr', 'gnupg'])
17+
18+
# Add signature key for CRAN
19+
Stage0 += shell(commands=['wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc'])
20+
21+
# Add CRAN repository
22+
Stage0 += shell(commands=['add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"'])
23+
1524
# Install build tools
1625
Stage0 += apt_get(ospackages=['build-essential', 'make'])
26+
Stage0 += cmake(eula=True)
1727

1828
# Install GNU compilers (upstream)
1929
compilers = gnu()
2030
Stage0 += compilers
2131

32+
# Install HDF5 libraries
33+
Stage0 += hdf5(configure_opts=['--enable-cxx', '--enable-fortran',])
34+
2235
# Install libraries required to build R
2336
Stage0 += apt_get(ospackages=['openssl', 'libxml2-dev', 'libcurl4-openssl-dev', 'libz-dev', 'libssl-dev',
2437
'libjpeg-dev', ])

examples/hpccm/r_container/r_container.recipe

+66
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,48 @@ From: ubuntu:22.04
1111
wget
1212
rm -rf /var/lib/apt/lists/*
1313

14+
%post
15+
apt-get update -y
16+
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
17+
apt-transport-https \
18+
dirmngr \
19+
gnupg \
20+
software-properties-common
21+
rm -rf /var/lib/apt/lists/*
22+
23+
%post
24+
cd /
25+
wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc
26+
27+
%post
28+
cd /
29+
add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
30+
1431
%post
1532
apt-get update -y
1633
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
1734
build-essential \
1835
make
1936
rm -rf /var/lib/apt/lists/*
2037

38+
# CMake version 3.25.1
39+
%post
40+
apt-get update -y
41+
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
42+
make \
43+
wget
44+
rm -rf /var/lib/apt/lists/*
45+
%post
46+
cd /
47+
mkdir -p /var/tmp && wget -q -nc --no-check-certificate -P /var/tmp https://github.com/Kitware/CMake/releases/download/v3.25.1/cmake-3.25.1-linux-x86_64.sh
48+
mkdir -p /usr/local
49+
/bin/sh /var/tmp/cmake-3.25.1-linux-x86_64.sh --prefix=/usr/local --skip-license
50+
rm -rf /var/tmp/cmake-3.25.1-linux-x86_64.sh
51+
%environment
52+
export PATH=/usr/local/bin:$PATH
53+
%post
54+
export PATH=/usr/local/bin:$PATH
55+
2156
# GNU compiler
2257
%post
2358
apt-get update -y
@@ -27,6 +62,37 @@ From: ubuntu:22.04
2762
gfortran
2863
rm -rf /var/lib/apt/lists/*
2964

65+
# HDF5 version 1.12.0
66+
%post
67+
apt-get update -y
68+
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
69+
bzip2 \
70+
file \
71+
make \
72+
wget \
73+
zlib1g-dev
74+
rm -rf /var/lib/apt/lists/*
75+
%post
76+
cd /
77+
mkdir -p /var/tmp && wget -q -nc --no-check-certificate -P /var/tmp http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-1.12/hdf5-1.12.0/src/hdf5-1.12.0.tar.bz2
78+
mkdir -p /var/tmp && tar -x -f /var/tmp/hdf5-1.12.0.tar.bz2 -C /var/tmp -j
79+
cd /var/tmp/hdf5-1.12.0 && ./configure --prefix=/usr/local/hdf5 --enable-cxx --enable-fortran
80+
make -j$(nproc)
81+
make -j$(nproc) install
82+
rm -rf /var/tmp/hdf5-1.12.0 /var/tmp/hdf5-1.12.0.tar.bz2
83+
%environment
84+
export CPATH=/usr/local/hdf5/include:$CPATH
85+
export HDF5_DIR=/usr/local/hdf5
86+
export LD_LIBRARY_PATH=/usr/local/hdf5/lib:$LD_LIBRARY_PATH
87+
export LIBRARY_PATH=/usr/local/hdf5/lib:$LIBRARY_PATH
88+
export PATH=/usr/local/hdf5/bin:$PATH
89+
%post
90+
export CPATH=/usr/local/hdf5/include:$CPATH
91+
export HDF5_DIR=/usr/local/hdf5
92+
export LD_LIBRARY_PATH=/usr/local/hdf5/lib:$LD_LIBRARY_PATH
93+
export LIBRARY_PATH=/usr/local/hdf5/lib:$LIBRARY_PATH
94+
export PATH=/usr/local/hdf5/bin:$PATH
95+
3096
%post
3197
apt-get update -y
3298
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \

0 commit comments

Comments
 (0)