Minor update of old vampirtrace package for hazelhen

This commit is contained in:
Christoph Niethammer 2016-01-26 14:01:15 +00:00
parent f498b0c98c
commit 1a5ac496b9

View file

@ -22,29 +22,35 @@ enable_cuda=${enable_cuda:=1}
# Other interesting configure options:
#--enable-sampling \
if [[ $PLATFORM == "hermit1" ]] ; then
CONFIGURE_OPTS=" \
--with-platform=crayxe \
--build=x86_64-unknown-linux-gnu \
--host=x86_64-cray-linux-gnu \
"
#--without-cross-prefix \
#--disable-exectrace \
else
CONFIGURE_OPTS=" \
--with-mpi-dir=$MPI_DIR \
"
fi
case $PLATFORM in
hermit1|hornet|hazelhen)
CONFIGURE_OPTS=" \
--with-platform=crayxe \
--build=x86_64-unknown-linux-gnu \
--host=x86_64-cray-linux-gnu \
"
#--without-cross-prefix \
#--disable-exectrace \
;;
laki)
CONFIGURE_OPTS=" \
--with-mpi-dir=$MPI_DIR \
"
;;
esac
# use PAPI
if [ $enable_papi != 0 ] ; then
if [[ $PLATFORM == "hermit1" ]] ; then
module load papi
else
module load performance/papi
PAPI_DIR=$(dirname $(dirname $(which papi_avail)))
CONFIGURE_OPTS="${CONFIGURE_OPTS} --with-papi-dir=$PAPI_DIR"
fi
case $PLATFORM in
hermit1|hornet|hazelhen)
module load papi
;;
laki)
module load performance/papi
PAPI_DIR=$(dirname $(dirname $(which papi_avail)))
CONFIGURE_OPTS="${CONFIGURE_OPTS} --with-papi-dir=$PAPI_DIR"
;;
esac
fi
# use CUDA