|
| 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 | +The SQS queue system is available as well as a number of editors, git, |
| 4 | +make, CMake, GCC and Open-MPI |
| 5 | +
|
| 6 | +Usage: |
| 7 | + $ hpccm --recipe compute_node.py --format docker |
| 8 | + $ hpccm --recipe compute_node.py --format singularity |
| 9 | +''' |
| 10 | + |
| 11 | +from pathlib import Path |
| 12 | + |
| 13 | + |
| 14 | +# Choose a base image |
| 15 | +Stage0.baseimage('ubuntu:21.10') |
| 16 | + |
| 17 | +# Install editor and other tools |
| 18 | +Stage0 += apt_get(ospackages=['vim', 'less', 'ack', 'tmux', ]) |
| 19 | + |
| 20 | +# Install archive and compression software and utitlies |
| 21 | +Stage0 += apt_get(ospackages=['tar', 'gzip', 'bzip2', 'wget', 'ca-certificates', ]) |
| 22 | + |
| 23 | +# Install pip |
| 24 | +Stage0 += apt_get(ospackages=['python3-pip', ]) |
| 25 | + |
| 26 | +# Install version control |
| 27 | +Stage0 += apt_get(ospackages=['git', 'openssh-client', ]) |
| 28 | +# Install build tools |
| 29 | +Stage0 += apt_get(ospackages=['build-essential', 'make', 'pkg-config', ]) |
| 30 | +Stage0 += cmake(eula=True) |
| 31 | + |
| 32 | +# Install GNU compilers (upstream) |
| 33 | +compilers = gnu() |
| 34 | +Stage0 += compilers |
| 35 | + |
| 36 | +# install Open-MPI |
| 37 | +# This is the right thing to do, but it takes forever since it actually |
| 38 | +# builds Open MPI from source |
| 39 | +# Stage0 += openmpi(cuda=False, infiniband=False, version='4.0.2', |
| 40 | +# toolchain=compilers.toolchain, prefix='/usr/local/') |
| 41 | +# Fetching form repository is faster |
| 42 | +# Stage0 += apt_get(ospackages=['libopenmpi-dev', 'openmpi-common', 'openmpi-bin']) |
| 43 | + |
| 44 | +# Install debugging tools |
| 45 | +Stage0 += apt_get(ospackages=['gdb', 'valgrind', 'strace', ]) |
| 46 | + |
| 47 | + |
| 48 | +# Copy in some example code |
| 49 | +# source_dir = Path('source-code') |
| 50 | +# example_dir = '/sample_code' |
| 51 | +# for file in source_dir.glob('*'): |
| 52 | +# Stage0 += copy(src=f'{file}', |
| 53 | +# dest=f'{example_dir}/', |
| 54 | +# _mkdir=True) |
0 commit comments