From e98f3bf4846c95ae8ec8e1000be64201b062210d Mon Sep 17 00:00:00 2001 From: Christoph Niethammer Date: Wed, 13 Jul 2016 10:06:54 +0000 Subject: [PATCH] Sit class file for Open MPI 2.0.0. --- packages/mpi/openmpi/openmpi-2.0.0 | 49 ++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100755 packages/mpi/openmpi/openmpi-2.0.0 diff --git a/packages/mpi/openmpi/openmpi-2.0.0 b/packages/mpi/openmpi/openmpi-2.0.0 new file mode 100755 index 0000000..194ead9 --- /dev/null +++ b/packages/mpi/openmpi/openmpi-2.0.0 @@ -0,0 +1,49 @@ +#!/bin/sh +# sit class file +# +# Christoph Niethammer (C) 2016 +# + +CATEGORY="mpi" +PACKAGE="openmpi" +VERSION="2.0.0" +URL="http://www.open-mpi.org" +INSTALLER="Christoph Niethammer " + +# Archive A and package name P +A=${PACKAGE}-${VERSION}.tar.bz2 +P=${PACKAGE}-${VERSION} +HASH_MD5=cdacc800cb4ce690c1f1273cb6366674 +HASH_SHA1=a34f07a0e94af4ccd8080d74827befd61824c6c3 + +enable_cuda=0 + +# 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 +}