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,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
|
||||
|
|
Loading…
Reference in a new issue