- Install new version of VampirTrace -- get cuda and papi to work by default.
Fix buglet: --with-papi should be --with-papi-dir... (installed mvapich2-gnu-4.5 mvapich2-intel-12.0 openmpi-gnu-4.5 openmpi-intel-12.0)
This commit is contained in:
parent
569e58443d
commit
bb64306630
1 changed files with 46 additions and 0 deletions
46
packages/performance/vampirtrace-5.10.1
Executable file
46
packages/performance/vampirtrace-5.10.1
Executable file
|
@ -0,0 +1,46 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# VampirTrace sit class file
|
||||||
|
#
|
||||||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2011
|
||||||
|
#
|
||||||
|
|
||||||
|
CATEGORY="performance"
|
||||||
|
PACKAGE="vampirtrace"
|
||||||
|
VERSION="5.10.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_papi=${enable_cuda:=1}
|
||||||
|
|
||||||
|
|
||||||
|
# Other interesting configure options:
|
||||||
|
#--enable-sampling \
|
||||||
|
CONFIGURE_OPTS="\
|
||||||
|
--with-mpi-dir=$MPI_DIR \
|
||||||
|
"
|
||||||
|
|
||||||
|
# use PAPI
|
||||||
|
if [ $enable_papi != 0 ] ; then
|
||||||
|
module load system/perfctr system/papi
|
||||||
|
PAPI_DIR=$(dirname $(dirname $(which papi_avail)))
|
||||||
|
CONFIGURE_OPTS="${CONFIGURE_OPTS} --with-papi-dir=$PAPI_DIR"
|
||||||
|
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
|
Loading…
Reference in a new issue