Minor update of old vampirtrace package for hazelhen
This commit is contained in:
parent
f498b0c98c
commit
1a5ac496b9
1 changed files with 26 additions and 20 deletions
|
@ -22,7 +22,8 @@ enable_cuda=${enable_cuda:=1}
|
||||||
# Other interesting configure options:
|
# Other interesting configure options:
|
||||||
#--enable-sampling \
|
#--enable-sampling \
|
||||||
|
|
||||||
if [[ $PLATFORM == "hermit1" ]] ; then
|
case $PLATFORM in
|
||||||
|
hermit1|hornet|hazelhen)
|
||||||
CONFIGURE_OPTS=" \
|
CONFIGURE_OPTS=" \
|
||||||
--with-platform=crayxe \
|
--with-platform=crayxe \
|
||||||
--build=x86_64-unknown-linux-gnu \
|
--build=x86_64-unknown-linux-gnu \
|
||||||
|
@ -30,21 +31,26 @@ if [[ $PLATFORM == "hermit1" ]] ; then
|
||||||
"
|
"
|
||||||
#--without-cross-prefix \
|
#--without-cross-prefix \
|
||||||
#--disable-exectrace \
|
#--disable-exectrace \
|
||||||
else
|
;;
|
||||||
|
laki)
|
||||||
CONFIGURE_OPTS=" \
|
CONFIGURE_OPTS=" \
|
||||||
--with-mpi-dir=$MPI_DIR \
|
--with-mpi-dir=$MPI_DIR \
|
||||||
"
|
"
|
||||||
fi
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
# use PAPI
|
# use PAPI
|
||||||
if [ $enable_papi != 0 ] ; then
|
if [ $enable_papi != 0 ] ; then
|
||||||
if [[ $PLATFORM == "hermit1" ]] ; then
|
case $PLATFORM in
|
||||||
|
hermit1|hornet|hazelhen)
|
||||||
module load papi
|
module load papi
|
||||||
else
|
;;
|
||||||
|
laki)
|
||||||
module load performance/papi
|
module load performance/papi
|
||||||
PAPI_DIR=$(dirname $(dirname $(which papi_avail)))
|
PAPI_DIR=$(dirname $(dirname $(which papi_avail)))
|
||||||
CONFIGURE_OPTS="${CONFIGURE_OPTS} --with-papi-dir=$PAPI_DIR"
|
CONFIGURE_OPTS="${CONFIGURE_OPTS} --with-papi-dir=$PAPI_DIR"
|
||||||
fi
|
;;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# use CUDA
|
# use CUDA
|
||||||
|
|
Loading…
Reference in a new issue