c374f88480f065a38483218ec360140542f081d3
[alexxy/gromacs.git] / admin / containers / utility.py
1 #
2 # This file is part of the GROMACS molecular simulation package.
3 #
4 # Copyright (c) 2020,2021, by the GROMACS development team, led by
5 # Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 # and including many others, as listed in the AUTHORS file in the
7 # top-level source directory and at http://www.gromacs.org.
8 #
9 # GROMACS is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public License
11 # as published by the Free Software Foundation; either version 2.1
12 # of the License, or (at your option) any later version.
13 #
14 # GROMACS is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # Lesser General Public License for more details.
18 #
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with GROMACS; if not, see
21 # http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23 #
24 # If you want to redistribute modifications to GROMACS, please
25 # consider that scientific software is very special. Version
26 # control is crucial - bugs must be traceable. We will be happy to
27 # consider code for inclusion in the official distribution, but
28 # derived work must not be called official GROMACS. Details are found
29 # in the README & COPYING files - if they are missing, get the
30 # official version at http://www.gromacs.org.
31 #
32 # To help us fund GROMACS development, we humbly ask that you cite
33 # the research papers on the package. Check out http://www.gromacs.org.
34
35 """A utility module to help manage the matrix of configurations for CI testing and build containers.
36
37 When called as a stand alone script, prints a Docker image name based on the
38 command line arguments. The Docker image name is of the form used in the GROMACS
39 CI pipeline jobs.
40
41 Example::
42
43     $ python3 -m utility --llvm --doxygen
44     gromacs/ci-ubuntu-18.04-llvm-7-docs
45
46 See Also:
47     :file:`buildall.sh`
48
49 As a module, provides importable argument parser and docker image name generator.
50
51 Note that the parser is created with ``add_help=False`` to make it friendly as a
52 parent parser, but this means that you must derive a new parser from it if you
53 want to see the full generated command line help.
54
55 Example::
56
57     import utility.parser
58     # utility.parser does not support `-h` or `--help`
59     parser = argparse.ArgumentParser(
60         description='GROMACS CI image creation script',
61         parents=[utility.parser])
62     # ArgumentParser(add_help=True) is default, so parser supports `-h` and `--help`
63
64 See Also:
65     :file:`scripted_gmx_docker_builds.py`
66
67 Authors:
68     * Paul Bauer <paul.bauer.q@gmail.com>
69     * Eric Irrgang <ericirrgang@gmail.com>
70     * Joe Jordan <e.jjordan12@gmail.com>
71     * Mark Abraham <mark.j.abraham@gmail.com>
72
73 """
74
75 import argparse
76
77
78 parser = argparse.ArgumentParser(description='GROMACS CI image slug options.', add_help=False)
79 """A parent parser for tools referencing image parameters.
80
81 This argparse parser is defined for convenience and may be used to partially initialize
82 parsers for tools.
83
84 .. warning:: Do not modify this parser.
85
86     Instead, inherit from it with the *parents* argument to :py:class:`argparse.ArgumentParser`
87 """
88
89 parser.add_argument('--cmake', nargs='*', type=str, default=['3.16.3', '3.17.2', '3.18.4'], # new minimum required versions
90                     help='Selection of CMake version to provide to base image')
91
92 compiler_group = parser.add_mutually_exclusive_group()
93 compiler_group.add_argument('--gcc', type=int, nargs='?', const=7, default=7,
94                             help='Select GNU compiler tool chain. (Default) '
95                                  'Some checking is implemented to avoid incompatible combinations')
96 compiler_group.add_argument('--llvm', type=str, nargs='?', const='7', default=None,
97                             help='Select LLVM compiler tool chain. '
98                                  'Some checking is implemented to avoid incompatible combinations')
99 # TODO currently the installation merely gets the latest beta version of oneAPI,
100 # not a specific version. GROMACS probably doesn't need to address that until
101 # oneAPI makes an official release. Also, the resulting container is a mix
102 # of packages with different betaXY version numbers, which hopefully works and
103 # is what Intel intends...
104 compiler_group.add_argument('--oneapi', type=str, nargs='?', const="2021.1.1", default=None,
105                             help='Select Intel oneAPI package version.')
106
107 linux_group = parser.add_mutually_exclusive_group()
108 # Ubuntu 20+ is not yet tested. See issue #3680
109 linux_group.add_argument('--ubuntu', type=str, nargs='?', const='18.04', default='18.04',
110                          help='Select Ubuntu Linux base image. (default: ubuntu 18.04)')
111 linux_group.add_argument('--centos', type=str, nargs='?', const='7', default=None,
112                          help='Select Centos Linux base image.')
113
114 parser.add_argument('--cuda', type=str, nargs='?', const='10.2', default=None,
115                     help='Select a CUDA version for a base Linux image from NVIDIA.')
116
117 parser.add_argument('--mpi', type=str, nargs='?', const='openmpi', default=None,
118                     help='Enable MPI (default disabled) and optionally select distribution (default: openmpi)')
119
120 parser.add_argument('--tsan', type=str, nargs='?', const='llvm', default=None,
121                     help='Build special compiler versions with TSAN OpenMP support')
122
123 parser.add_argument('--hipsycl', type=str, nargs='?', default=None,
124                     help='Select hipSYCL repository tag/commit/branch.')
125
126 parser.add_argument('--clfft', type=str, nargs='?', const='master', default=None,
127                     help='Add external clFFT libraries to the build image')
128
129 parser.add_argument('--doxygen', type=str, nargs='?', const='1.8.5', default=None,
130                     help='Add doxygen environment for documentation builds. Also adds other requirements needed for final docs images.')
131
132 # Supported Python versions for maintained branches.
133 _python_versions = ['3.6.10', '3.7.7', '3.8.2', '3.9.1']
134 parser.add_argument('--venvs', nargs='*', type=str, default=_python_versions,
135                     help='List of Python versions ("major.minor.patch") for which to install venvs. '
136                          'Default: {}'.format(' '.join(_python_versions)))
137
138
139 def image_name(configuration: argparse.Namespace) -> str:
140     """Generate docker image name.
141
142     Image names have the form ``ci-<slug>``, where the configuration slug has the form::
143
144         <distro>-<version>-<compiler>-<major version>[-<gpusdk>-<version>][-<use case>]
145
146     This function also applies an appropriate Docker image repository prefix.
147
148     Arguments:
149         configuration: Docker image configuration as described by the parsed arguments.
150
151     """
152     elements = []
153     for distro in ('centos', 'ubuntu'):
154         version = getattr(configuration, distro, None)
155         if version is not None:
156             elements.append(distro + '-' + version)
157             break
158     for compiler in ('llvm', 'gcc'):
159         version = getattr(configuration, compiler, None)
160         if version is not None:
161             elements.append(compiler + '-' + str(version).split('.')[0])
162             break
163     for gpusdk in ('cuda', 'hipsycl'):
164         version = getattr(configuration, gpusdk, None)
165         if version is not None:
166             elements.append(gpusdk + '-' + version)
167     if configuration.oneapi is not None:
168         elements.append('oneapi-' + configuration.oneapi)
169
170     # Check for special cases
171     # The following attribute keys indicate the image is built for the named
172     # special use case.
173     cases = {'doxygen': 'docs',
174              'tsan': 'tsan'}
175     for attr in cases:
176         value = getattr(configuration, attr, None)
177         if value is not None:
178             elements.append(cases[attr])
179     slug = '-'.join(elements)
180     # we are using the GitLab container registry to store the images
181     # to get around issues with pulling them repeatedly from DockerHub
182     # and running into the image pull limitation there.
183     return 'registry.gitlab.com/gromacs/gromacs/ci-' + slug
184
185
186 if __name__ == "__main__":
187     args = argparse.ArgumentParser(parents=[parser]).parse_args()
188     print(image_name(args))