/usr/lib/mpich/bin/mpirun_dbg.totalview is in mpich-bin 1.2.7-10ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | #!/bin/sh
cmdLineArgs=""
p4pgfile=""
p4workdir=""
prognamemain=""
tvcommand=${TOTALVIEW:-totalview}
while [ 1 -le $# ] ; do
arg=$1
shift
case $arg in
-cmdlineargs)
cmdLineArgs="$1"
shift
;;
-p4pg)
p4pgfile="$1"
shift
;;
-p4wd)
p4workdir="$1"
shift
;;
-progname)
prognamemain="$1"
shift
;;
esac
done
#
if [ "$just_testing" = 1 ] ; then
doitall="echo"
else
# We need the eval to handle arguments containing blanks.
doitall="eval"
fi
# Note that this is run from within the mpirun.ch_p4 script only (!), so
# the argument list is p4 specific. FIX ME!
#
# mpirun.ch_p4 exports nolocal and machinehead if not a local run.
if [ "$nolocal" = 1 ] ; then
# Note that mpirun.ch_p4 exports P4_RSHCOMMAND
rshcommand=${P4_RSHCOMMAND-ssh}
if [ "$rshcommand" = "ssh" ] ; then
doitall="$doitall $rshcommand -X $machinehead"
else
doitall="$doitall $rshcommand env DISPLAY=$DISPLAY"
fi
fi
$doitall $tvcommand $prognamemain -a $cmdLineArgs -p4pg $p4pgfile -p4wd $p4workdir -mpichtv
|