Sit class file for Vampirtrace-5.14.1.
Enable --with-papi=DIR to fix problems with system PAPI installation on Laki.
This commit is contained in:
parent
4bc63ebc73
commit
b69b7f842a
1 changed files with 63 additions and 0 deletions
63
packages/performance/vampirtrace/vampirtrace-5.14.1
Executable file
63
packages/performance/vampirtrace/vampirtrace-5.14.1
Executable file
|
@ -0,0 +1,63 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# sit class file
|
||||||
|
#
|
||||||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2012
|
||||||
|
#
|
||||||
|
|
||||||
|
CATEGORY="performance"
|
||||||
|
PACKAGE="vampirtrace"
|
||||||
|
VERSION="5.14.1"
|
||||||
|
URL="http://www.tu-dresden.de/zih/vampirtrace/"
|
||||||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||||||
|
|
||||||
|
|
||||||
|
# Archive A and package name P
|
||||||
|
A="VampirTrace-${VERSION}.tar.gz"
|
||||||
|
P="VampirTrace-${VERSION}"
|
||||||
|
|
||||||
|
enable_papi=${enable_papi:=1}
|
||||||
|
enable_cuda=${enable_cuda:=0}
|
||||||
|
|
||||||
|
|
||||||
|
# Other interesting configure options:
|
||||||
|
#--enable-sampling \
|
||||||
|
|
||||||
|
if [[ $PLATFORM == "hermit1" ]] ; then
|
||||||
|
CONFIGURE_OPTS=" \
|
||||||
|
--with-platform=crayxt \
|
||||||
|
"
|
||||||
|
else
|
||||||
|
CONFIGURE_OPTS=" \
|
||||||
|
--with-mpi-dir=$MPI_DIR \
|
||||||
|
"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 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
|
||||||
|
fi
|
||||||
|
|
||||||
|
# use CUDA
|
||||||
|
if [ $enable_cuda != 0 ] ; then
|
||||||
|
module load cuda
|
||||||
|
CUDA_DIR=${CUDA_DIR:=$(dirname $(dirname $(which nvcc)))}
|
||||||
|
CONFIGURE_OPTS="${CONFIGURE_OPTS} \
|
||||||
|
--with-cuda-dir=$CUDA_DIR \
|
||||||
|
--with-cuda-inc-dir=$CUDA_DIR/include \
|
||||||
|
--with-cuda-lib-dir=$CUDA_DIR/lib \
|
||||||
|
--with-cudart-dir=$CUDA_DIR \
|
||||||
|
--with-cudart-lib-dir=$CUDA_DIR/lib64 \
|
||||||
|
"
|
||||||
|
fi
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
if [[ $PLATFORM == "hermit1" ]] ; then
|
||||||
|
patch config/defaults/crayxt < $SCLASS_DIR/$SCLASSFILE-hermit-0000.patch
|
||||||
|
fi
|
||||||
|
}
|
Loading…
Reference in a new issue