mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

new file: b/binutils/binutils-2.25-GCCcore-4.9.3.eb new file: b/binutils/binutils-2.25.eb new file: b/byacc/byacc-20120526.eb modified: f/FFTW/FFTW-3.3.5-gompi-2016a.eb modified: f/flex/flex-2.5.39.eb new file: f/foss/foss-2016a.eb modified: g/GCCcore/GCCcore-4.9.3.eb modified: g/GCCcore/GCCcore-5.4.0.eb modified: g/GCCcore/GCCcore-8.1.0.eb modified: g/GROMACS/GROMACS-5.1.4-foss-2016a-hybrid-single-PLUMED.eb new file: g/gompi/gompi-2016a.eb new file: h/hwloc/hwloc-1.11.7-GCC-4.9.3-2.25.eb new file: i/icc/icc-2018.1.163-GCC-6.3.0-2.27.eb new file: i/iccifort/iccifort-2018.1.163-GCC-6.3.0-2.27.eb new file: i/ifort/ifort-2018.1.163-GCC-6.3.0-2.27.eb modified: i/iimpi/iimpi-2018a.eb new file: i/impi/impi-2018.1.163-iccifort-2018.1.163-GCC-6.3.0-2.27.eb modified: i/intel/intel-2018a.eb modified: l/libarchive/libarchive-3.3.2.eb new file: l/libmatheval/libmatheval-1.1.8.eb new file: n/numactl/numactl-2.0.11-GCC-4.9.3-2.25.eb modified: n/numactl/numactl-2.0.11-GCC-6.3.0-2.27.eb modified: o/ORCA/ORCA-4.0.1.2.eb modified: o/OpenMPI/OpenMPI-1.10.2-GCC-4.9.3-2.25.eb new file: o/OpenMPI/OpenMPI-1.10.7-GCC-4.9.3-2.25.eb modified: o/OpenMPI/OpenMPI-2.0.1-iccifort-2017.1.132-GCC-6.3.0-2.27.eb deleted: i/icc/icc-2018.1.163-GCC-6.4.0-2.28.eb deleted: i/iccifort/iccifort-2018.1.163-GCC-6.4.0-2.28.eb deleted: i/ifort/ifort-2018.1.163-GCC-6.4.0-2.28.eb deleted: i/impi/impi-2018.1.163-iccifort-2018.1.163-GCC-6.4.0-2.28.eb
76 lines
1.9 KiB
Plaintext
76 lines
1.9 KiB
Plaintext
# IT4Innovations 2018
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'OpenMPI'
|
|
version = '1.10.7'
|
|
|
|
homepage = 'http://www.open-mpi.org/'
|
|
description = """The Open MPI Project is an open source MPI-2 implementation."""
|
|
|
|
toolchain = {'name': 'GCC', 'version': '4.9.3-2.25'}
|
|
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
source_urls = [
|
|
'http://www.open-mpi.org/software/ompi/v%(version_major_minor)s/downloads']
|
|
|
|
dependencies = [('hwloc', '1.11.7')]
|
|
|
|
builddependencies = [
|
|
('Java', '1.8.0_121', '', True)
|
|
]
|
|
|
|
configopts = '--with-threads=posix --enable-shared --enable-mpi-thread-multiple --with-verbs '
|
|
# suppress failure modes in relation to mpirun path
|
|
configopts += '--enable-mpirun-prefix-by-default '
|
|
configopts += '--with-hwloc=$EBROOTHWLOC ' # hwloc support
|
|
# statically link component, don't do dynamic loading
|
|
configopts += '--disable-dlopen '
|
|
configopts += '--with-tm=/opt/pbs/default ' # Enable PBS
|
|
configopts += '--enable-mpi-java ' # Java support RT#4090
|
|
|
|
# for PBS Pro 13
|
|
preconfigopts = 'export LIBS="-ldl" && '
|
|
|
|
# needed for --with-verbs
|
|
osdependencies = [('libibverbs-dev', 'libibverbs-devel', 'rdma-core-devel')]
|
|
|
|
libs = [
|
|
"mpi_cxx",
|
|
"mpi_mpifh",
|
|
"mpi",
|
|
"ompitrace",
|
|
"open-pal",
|
|
"open-rte",
|
|
"vt",
|
|
"vt-hyb",
|
|
"vt-mpi",
|
|
"vt-mpi-unify"]
|
|
sanity_check_paths = {
|
|
'files': [
|
|
"bin/%s" %
|
|
binfile for binfile in [
|
|
"ompi_info",
|
|
"opal_wrapper",
|
|
"orterun"]] +
|
|
[
|
|
"lib/lib%s.%s" %
|
|
(libfile,
|
|
SHLIB_EXT) for libfile in libs] +
|
|
[
|
|
"include/%s.h" %
|
|
x for x in [
|
|
"mpi-ext",
|
|
"mpif-config",
|
|
"mpif",
|
|
"mpi",
|
|
"mpi_portable_platform"]],
|
|
'dirs': ["include/openmpi/ompi/mpi/cxx"],
|
|
}
|
|
|
|
modextravars = {'OMPI_MCA_btl_openib_if_include': 'mlx4_0',
|
|
'OMPI_MCA_oob_tcp_if_include': '10.0.0.0/8',
|
|
}
|
|
|
|
moduleclass = 'mpi'
|