Jussilehtola (talk | contribs) No edit summary |
Jussilehtola (talk | contribs) |
||
Line 23: | Line 23: | ||
|Libraries||<code>%{_libdir}/%{name}%{?_opt_cc_suffix}/</code> | |Libraries||<code>%{_libdir}/%{name}%{?_opt_cc_suffix}/</code> | ||
|- | |- | ||
|Config files||<code>%{_sysconfdir}/%{name}-%{_arch}%{?opt_cc_suffix}</code> | |Config files||<code>%{_sysconfdir}/%{name}-%{_arch}%{?opt_cc_suffix}/</code> | ||
|} | |} | ||
Here <code>%{?_opt_cc_suffix}</code> is null when compiled with the normal <code>{gcc,g++,gfortran}</code> combination, but would be e.g. <code>-gcc34</code> for <code>{gcc34,g++34,g77}</code>. | Here <code>%{?_opt_cc_suffix}</code> is null when compiled with the normal <code>{gcc,g++,gfortran}</code> combination, but would be e.g. <code>-gcc34</code> for <code>{gcc34,g++34,g77}</code>. | ||
Line 39: | Line 39: | ||
|Include files||<code>%{_includedir}/%{name}%{?_opt_cc_suffix}/</code> | |Include files||<code>%{_includedir}/%{name}%{?_opt_cc_suffix}/</code> | ||
|} | |} | ||
Architecture and compiler (<code>%{?_opt_cc_suffix}</code>) independent parts <b>MUST</b> be placed in a <code>-common</code> subpackage | In the case the man pages or include files are architecture specific (they contain architecture specific stuff), the <code>-%{_arch}</code> suffix <b>MUST</b> be added to <code>%{name}</code> in the above. | ||
Architecture and compiler (<code>%{?_opt_cc_suffix}</code>) independent parts not placed in <code>-devel</code> <b>MUST</b> be placed in a <code>-common</code> subpackage that is <code>BuildArch: noarch</code> on >= Fedora 11. | |||
The MPI compiler's spec file <b>MUST</b> support the use of the following variables | The MPI compiler's spec file <b>MUST</b> support the use of the following variables | ||
Line 72: | Line 73: | ||
! Variable !! Value | ! Variable !! Value | ||
|- | |- | ||
|<code>MPI_BIN</code>|<code>%{_bindir}/%{name}-%{_arch}%{?_opt_cc_suffix}</code> | |<code>MPI_BIN</code>|<code>%{_bindir}/%{name}-%{_arch}%{?_opt_cc_suffix}/</code> | ||
|- | |- | ||
|<code>MPI_CONFIG</code>|<code>%{_sysconfdir}/%{name}-%{_arch}%{?opt_cc_suffix}</code> | |<code>MPI_CONFIG</code>|<code>%{_sysconfdir}/%{name}-%{_arch}%{?opt_cc_suffix}/</code> | ||
|- | |- | ||
|<code>MPI_INCLUDE</code>|<code>%{_includedir}/%{name}%{?_opt_cc_suffix}/</code> | |<code>MPI_INCLUDE</code>|<code>%{_includedir}/%{name}%{?_opt_cc_suffix}/</code> | ||
Line 86: | Line 87: | ||
|<code>MPI_SUFFIX</code>|<code>_mpi</code> | |<code>MPI_SUFFIX</code>|<code>_mpi</code> | ||
|} | |} | ||
<b>MUST:</b> By default, no files are placed in <code>/etc/ld.so.conf.d</code>. If the packager wishes to provide alternatives support, it <b>MUST</b> be placed in a subpackage along with the ld.so.conf.d file so that alternatives support does not need to be installed if not wished for. | <b>MUST:</b> By default, no files are placed in <code>/etc/ld.so.conf.d</code>. If the packager wishes to provide alternatives support, it <b>MUST</b> be placed in a subpackage along with the ld.so.conf.d file so that alternatives support does not need to be installed if not wished for. | ||
Line 103: | Line 102: | ||
loading and unloading the compiler in spec files is as easy as <code>%{_openmpi_load}</code> and <code>%{_openmpi_unload}</code>. | loading and unloading the compiler in spec files is as easy as <code>%{_openmpi_load}</code> and <code>%{_openmpi_unload}</code>. | ||
If the environment module sets compiler flags such as <code>CFLAGS</code> (thus overriding the ones exported in <code>%configure</code>, the RPM macro <b>MUST</b> make them use the Fedora optimization flags <code>%{optflags}</code> once again | If the environment module sets compiler flags such as <code>CFLAGS</code> (thus overriding the ones exported in <code>%configure</code>, the RPM macro <b>MUST</b> make them use the Fedora optimization flags <code>%{optflags}</code> once again (as in the example above in which the openmpi sets CFLAGS). | ||
== Packaging of MPI software == | == Packaging of MPI software == |
Revision as of 10:37, 26 July 2009
Introduction
Message Passing Interface (MPI) is an API for parallelization of programs across multiple nodes and has been around since 1994 [1]. MPI can also be used for parallelization on SMP machines and is considered very efficient in it too (close to 100% scaling on parallelizable code as compared to ~80% commonly obtained with threads due to unoptimal memory allocation on NUMA machines). Before MPI, about every manufacturer of supercomputers had their own programming language for writing programs; MPI made porting software easy.
There are many MPI implementations available, such as LAM-MPI (in Fedora, obsoleted by Open MPI), Open MPI (the default MPI compiler in Fedora and the MPI compiler used in RHEL), MPICH (Not yet in Fedora), MPICH2 (in Fedora) and MVAPICH1 and MVAPICH2 (Not yet in Fedora).
As some MPI libraries work better on some hardware than others, and some software works best with some MPI library, the selection of the library used must be done in user level, on a session specific basis. Also, people doing high performance computing may want to use more efficient compilers than the default one in Fedora (gcc), so one must be able to have many versions of the MPI compiler each compiled with a different compiler installed at the same time. This must be taken into account when writing spec files.
Packaging of MPI compilers
The MPI compiler RPMs MUST be possible to build with other compilers as well and support simultaneous installation of versions compiled with different compilers (e.g. in addition to a version compiled with {gcc,g++,gfortran}
a version compiled with {gcc34,g++34,g77}
must be possible to install and use simultaneously as gfortran does not fully support Fortran 77). To do this, the files of MPI compilers MUST be installed in the following directories:
File type | Placement |
---|---|
Binaries | %{_bindir}/%{name}-%{_arch}%{?_opt_cc_suffix}/
|
Libraries | %{_libdir}/%{name}%{?_opt_cc_suffix}/
|
Config files | %{_sysconfdir}/%{name}-%{_arch}%{?opt_cc_suffix}/
|
Here %{?_opt_cc_suffix}
is null when compiled with the normal {gcc,g++,gfortran}
combination, but would be e.g. -gcc34
for {gcc34,g++34,g77}
.
As include files and manual pages are bound to overlap between different MPI implementations, they MUST also placed outside normal directories:
File type | Placement |
---|---|
Man pages | %{_mandir}/%{name}%{?_opt_cc_suffix}/
|
Include files | %{_includedir}/%{name}%{?_opt_cc_suffix}/
|
In the case the man pages or include files are architecture specific (they contain architecture specific stuff), the -%{_arch}
suffix MUST be added to %{name}
in the above.
Architecture and compiler (%{?_opt_cc_suffix}
) independent parts not placed in -devel
MUST be placed in a -common
subpackage that is BuildArch: noarch
on >= Fedora 11.
The MPI compiler's spec file MUST support the use of the following variables
# We only compile with gcc, but other people may want other compilers. # Set the compiler here. %global opt_cc gcc # Optional CFLAGS to use with the specific compiler...gcc doesn't need any, # so uncomment and define to use #global opt_cflags %global opt_cxx g++ #global opt_cxxflags %global opt_f77 gfortran #global opt_fflags %global opt_fc gfortran #global opt_fcflags # Optional name suffix to use...we leave it off when compiling with gcc, but # for other compiled versions to install side by side, it will need a # suffix in order to keep the names from conflicting. #global cc_name_suffix -gcc
The runtime of MPI compilers (mpirun, the libraries, the manuals etc) MUST be packaged into %{name}, and the development headers and libraries into %{name}-devel.
As the compiler is installed outside PATH
, one needs to load the relevant variables before being able to use the compiler or run MPI programs. This is done using environment modules.
The module file MUST prepend the MPI bindir %{_libdir}/%{name}/%{version}-<compiler>/bin
into the users PATH and set LD_LIBRARY_PATH to %{_libdir}/%{name}/%{version}-<compiler>/lib
. The module file MUST also set some helper variables (primarily for use in spec files):
Variable | Value |
---|---|
%{_bindir}/%{name}-%{_arch}%{?_opt_cc_suffix}/
| |
%{_sysconfdir}/%{name}-%{_arch}%{?opt_cc_suffix}/
| |
%{_includedir}/%{name}%{?_opt_cc_suffix}/
| |
%{_libdir}/%{name}%{?_opt_cc_suffix}/
| |
%{_mandir}/%{name}%{?_opt_cc_suffix}/
| |
%{name}
| |
_mpi
|
MUST: By default, no files are placed in /etc/ld.so.conf.d
. If the packager wishes to provide alternatives support, it MUST be placed in a subpackage along with the ld.so.conf.d file so that alternatives support does not need to be installed if not wished for.
The MPI compiler package MUST provide an RPM macro that makes loading and unloading the support easy in spec files, e.g. by placing the following in /etc/rpm/macros.openmpi
%_openmpi_load \ . /etc/profile.d/modules.sh; \ module load openmpi-%{_arch}; \ export CFLAGS="$CFLAGS %{optflags}"; %_openmpi_unload \ . /etc/profile.d/modules.sh; \ module unload openmpi-%{_arch};
loading and unloading the compiler in spec files is as easy as %{_openmpi_load}
and %{_openmpi_unload}
.
If the environment module sets compiler flags such as CFLAGS
(thus overriding the ones exported in %configure
, the RPM macro MUST make them use the Fedora optimization flags %{optflags}
once again (as in the example above in which the openmpi sets CFLAGS).
Packaging of MPI software
Software that supports MPI MUST be packaged also in serial mode [i.e. no MPI], if it is supported by upstream. (for instance: foo
).
The packager MUST package at least a version compiled against Open MPI. Packages made against other MPI compilers in Fedora SHOULD be made, but that is left up to the maintainer. The MPI enabled bits MUST be placed in a subpackage with the suffix denoting the MPI compiler used (for instance: foo-mpi
for Open MPI [the traditional MPI compiler in Fedora] or foo-mpich2
for MPICH2).
The packages MUST have explicit requires on the used MPI runtime, as rpm might not pick up the correct version. - needs to be checked, at least libmpi is provided by all of them(?)
Each MPI build of shared libraries SHOULD have a separate -libs subpackage for the libraries (e.g. foo-mpich2-libs). Each MPI build MUST have a separate -devel subpackage (e.g. foo-mpich2-devel) that includes the development libraries and Requires: %{name}-devel
that includes the headers.
To prevent name clashes, there are two possibilities in the installation location:
- Placing in system directories
- The binaries of the software placed in
%{_bindir}
MUST be suffixed with%{_mpi_suffix}
(e.g.bar_mpi
[for Open MPI] orbar_mpich2
[for MPICH2]). - The libraries of the software placed in
%{_libdir}
MUST be suffixed with%{_mpi_suffix}
(e.g.libbar_mpi.so
[for Open MPI] orlibbar_mpich2.so
[for MPICH2]). - Files installed in
%{_datadir}
SHOULD be placed in a-common
subpackage that is required by all of the packages containing binaries, unless including them in the package of the serial version and requiring it is deemed more appropriate.
- The binaries of the software placed in
- Placing in a separate directory
- The software
MUST
be installed in%{_libdir}/%{name}/%{version}-%{_mpi_compiler}/
(e.g. code>%{_libdir}/foo/1.0-openmpi-gcc/, including libraries and man files. - Architecture and compiler independent headers MUST be placed as normal into
%{_includedir}
. If the headers contain e.g. some declaration about the MPI compiler used, the headers MUST be placed with the rest of the files in%{_libdir}/%{name}/%{version}-%{_mpi_compiler}/
. - Files normally installed in
%{_datadir}
SHOULD be placed in a-common
subpackage that is required by all of the packages containing binaries, unless including them in the package of the serial version and requiring it is deemed more appropriate. - An environment module enabling the use of the software MUST be written and be made available as
/etc/modulefiles/%{name}-%{compiler}-%{_arch}
. The module MUST require the module of the used compiler. More info on environment modules.
- The software
A sample spec file
Name: foo %package openmpi BuildRequires: openmpi-devel %package mpich2 BuildRequires: mpich2-devel %build # Have to do off-root builds to be able to build many versions at once # Build serial version mkdir serial cd serial ln -s ../configure . %configure make %{?_smp_mflags} cd .. # Build parallel versions: set compiler variables to MPI wrappers export CC=mpicc export CXX=mpicxx export FC=mpif90 export F77=mpif77 # Build LAM version %{_lam_load} mkdir $MPICOMPILER cd $MPICOMPILER ln -s ../configure . %configure --program-suffix=$MPISUFFIX make %{?_smp_mflags} cd .. %{_lam_unload} # Build OpenMPI version %{_openmpi_load} mkdir $MPICOMPILER cd $MPICOMPILER ln -s ../configure . %configure --program-suffix=$MPISUFFIX make %{?_smp_mflags} cd .. %{_openmpi_unload} # Build mpich2 version %{_mpich2_load} mkdir $MPICOMPILER cd $MPICOMPILER ln -s ../configure . %configure --program-suffix=$MPISUFFIX make %{?_smp_mflags} cd .. %{_mpich2_unload} %install # Install serial version make -C serial install DESTDIR=%{buildroot} INSTALL="install -p" CPPROG="cp -p" # Install LAM version %{_lam_load} make -C %{_mpi_compiler} install DESTDIR=%{buildroot} INSTALL="install -p" CPPROG="cp -p" %{_lam_unload} # Install OpenMPI version %{_openmpi_load} make -C %{_mpi_compiler} install DESTDIR=%{buildroot} INSTALL="install -p" CPPROG="cp -p" %{_openmpi_unload} # Install MPICH2 version %{_mpich2_load} make -C %{_mpi_compiler} install DESTDIR=%{buildroot} INSTALL="install -p" CPPROG="cp -p" %{_mpich2_unload} %files # All the serial (normal) binaries %files lam # All lam linked files %files openmpi # All openmpi linked files %files mpich2 # All mpich2 linked files