Update of /cvsroot/mauischeduler/mauisched/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12778
Modified Files:
runmpi_eth.sh.in runmpi_gm.sh.in
Log Message:
so many compilers, so little time ...
Index: runmpi_eth.sh.in
===================================================================
RCS file: /cvsroot/mauischeduler/mauisched/scripts/runmpi_eth.sh.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** runmpi_eth.sh.in 9 Sep 2003 20:04:14 -0000 1.7
--- runmpi_eth.sh.in 8 Feb 2005 05:43:28 -0000 1.8
***************
*** 32,36 ****
#
! mpirun="/usr/local/mpich/ip/pgi/bin/mpirun"
# HACK NOTE: Needs to be NFS-mounted directories?:
--- 32,40 ----
#
! mpitype=`echo $0 | sed -e 's/.*runmpi_eth_//'`
! if [ -z $mpitype ] ; then
! mpitype='gnu'
! fi
! mpirun="/usr/local/mpich/ip/$mpitype/bin/mpirun"
# HACK NOTE: Needs to be NFS-mounted directories?:
***************
*** 58,62 ****
#
! # start the MPI-over-Myrinet job
#
$mpirun -np $MAUI_TASK_COUNT -machinefile $tasks_file "$@"
--- 62,66 ----
#
! # start the MPI-over-Ethernet job
#
$mpirun -np $MAUI_TASK_COUNT -machinefile $tasks_file "$@"
***************
*** 73,78 ****
# Be a good citizen and clean up after yourself! :)
#
! if /usr/bin/test ! -z "$MAUI_JOB_USER" ; then
! if /usr/bin/test x"$MAUI_JOB_USER" != 'xroot' ; then
headnode=`echo $MAUI_JOB_NODES | sed -e 's/:.*$//g'`
for node in `echo $MAUI_JOB_NODES | sed -e 's/:/ /g'` ; do
--- 77,82 ----
# Be a good citizen and clean up after yourself! :)
#
! if [ ! -z "$MAUI_JOB_USER" ; then
! if [ x"$MAUI_JOB_USER" != 'xroot' ; then
headnode=`echo $MAUI_JOB_NODES | sed -e 's/:.*$//g'`
for node in `echo $MAUI_JOB_NODES | sed -e 's/:/ /g'` ; do
Index: runmpi_gm.sh.in
===================================================================
RCS file: /cvsroot/mauischeduler/mauisched/scripts/runmpi_gm.sh.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** runmpi_gm.sh.in 9 Sep 2003 20:04:14 -0000 1.13
--- runmpi_gm.sh.in 8 Feb 2005 05:43:28 -0000 1.14
***************
*** 32,36 ****
#
! mpirun="/usr/local/mpich/gm/pgi/bin/mpirun"
# HACK NOTE: Needs to be NFS-mounted directories?:
--- 32,40 ----
#
! mpitype=`echo $0 | sed -e 's/.*runmpi_gm_//'`
! if [ -z $mpitype ] ; then
! mpitype='gnu'
! fi
! mpirun="/usr/local/mpich/gm/$mpitype/bin/mpirun"
# HACK NOTE: Needs to be NFS-mounted directories?:
|