sit class file for Open MPI 1.8.7
This commit is contained in:
parent
e7f7220417
commit
f1312ea2a5
1 changed files with 49 additions and 0 deletions
49
packages/mpi/openmpi/openmpi-1.8.7
Executable file
49
packages/mpi/openmpi/openmpi-1.8.7
Executable file
|
@ -0,0 +1,49 @@
|
|||
#!/bin/sh
|
||||
# sit class file
|
||||
#
|
||||
# Christoph Niethammer <niethammer@hlrs.de> (C) 2015
|
||||
#
|
||||
|
||||
CATEGORY="mpi"
|
||||
PACKAGE="openmpi"
|
||||
VERSION="1.8.7"
|
||||
URL="http://www.open-mpi.org"
|
||||
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||||
|
||||
# Archive A and package name P
|
||||
A=${PACKAGE}-${VERSION}.tar.bz2
|
||||
P=${PACKAGE}-${VERSION}
|
||||
HASH_MD5=eb569e7dc97eeaa5b1876cccf114f377
|
||||
HASH_SHA1=781330b24e6656143ae3252f088a04b91411554b
|
||||
|
||||
enable_cuda=1
|
||||
|
||||
# Other interesting configure options:
|
||||
# --enable-mpi-threads
|
||||
# --enable-progress-threads
|
||||
CONFIGURE_OPTS="
|
||||
--with-devel-headers \
|
||||
--enable-contrib-no-build=vt
|
||||
--enable-shared \
|
||||
--enable-static \
|
||||
--enable-mpi-fortran=usempif08 \
|
||||
"
|
||||
|
||||
if [ $PLATFORM = "hornet" ] ; then
|
||||
CONFIGURE_OPTS="$CONFIGURE_OPTS --with-platform=lanl/cray_xe6/optimized-nopanasas"
|
||||
fi
|
||||
|
||||
if [ $enable_cuda != 0 ] ; then
|
||||
module load cuda
|
||||
CONFIGURE_OPTS+=" --with-cuda=$CUDA_DIR"
|
||||
fi
|
||||
|
||||
if [[ -d /opt/voltaire/fca ]]; then
|
||||
echo "Voltaire FCA found"
|
||||
sit_info "Enabling Voltaire FCA (/opt/voltaire/fca)"
|
||||
CONFIGURE_OPTS+=" --with-fca=/opt/voltaire/fca"
|
||||
fi
|
||||
|
||||
src_pretest() {
|
||||
make check
|
||||
}
|
Loading…
Reference in a new issue