Newer
Older
#!/bin/sh
#
# run douar, on the p690
#
# Author: Douglas Guptill
# 2009-05-25: new
if test $# -lt 1 ; then
echo "Usage: $0 <number-of-processors>"
exit
fi
PROCS=$1
echo "Will use ${PROCS} processes."
make_dir() {
if ! test -d $1; then mkdir $1; fi
}
if test "x${NLSPATH}" = x ; then
export NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat
echo "setting NLSPATH=${NLSPATH}"
fi
# The PGPLOT routines need this.
export PGPLOT_DIR=/home/beaumnt1/software/pgplot-5.2.2
# However the export doesn't seem to work.
# copy wsmp.lic to the running directory.
# export WSMPLICPATH=/home/beaumnt1/software/wsmp/wsmp.lic
# For WSMP on AIX
export SPINLOOPTIME=200
export YIELDLOOPTIME=200
export RT_GRQ=ON
export AIXTHREAD_COND_DEBUG=OFF
export AIXTHREAD_MUTEX_DEBUG=OFF
export MP_EUILIB=us
# export MP_EUILIB=ip
export MP_EUIDEVICE=css0
# export MP_EUIDEVICE=en0
export MP_CSS_INTERRUPT=yes
export MP_WAIT_MODE=nopoll
export_MP_PULSE=0
# for WSMP on Linux.
# export MALLOC_TRIM_THRESHOLD_
# export MALLOC_MMAP_MAX_
make_dir DEBUG
make_dir DEBUG/mpilogs
COM="poe ${BIN} -procs ${PROCS} -hostfile ${HOME}/host.list"
ulimit -d unlimited >${OUT}
ulimit -s 2000000 >>${OUT}
ulimit -m unlimited >>${OUT}
ulimit -a >>${OUT}
OUT=douar.out
# start douar and go away....
#
echo "douar has been started. Look in nohup.out ."
# start douar and watch it........
#
# ${COM} 2>douar.err | tee -a ${OUT}