Skip to content
Snippets Groups Projects
Commit 73127cbc authored by Douglas Guptill's avatar Douglas Guptill
Browse files

move run scripts to test directory

parent 0a836573
No related branches found
No related tags found
No related merge requests found
File moved
......@@ -4,6 +4,7 @@
#
# Author: Douglas Guptill
# 2009-05-25: new
# 2009-08-03: add -eulib ip to poe
make_dir() {
if ! test -d $1; then mkdir $1; fi
......@@ -17,6 +18,7 @@ fi
PROCS=$1
echo "Will use ${PROCS} processes."
OUT=douar.out
ERR=douar.err
# For poe
#
......@@ -60,18 +62,16 @@ make_dir DEBUG
make_dir DEBUG/mpilogs
make_dir OUT
# define the binary of douar
BIN=/home/beaumnt1/software/DOUAR/bin/douar
BIN=/home/beaumnt1/software/douar/bin/douar-q64
# Here is the run command
COM="poe ${BIN} -procs ${PROCS} -hostfile ${HOME}/host.list"
COM="poe ${BIN} -procs ${PROCS} -hostfile ${HOME}/host.list -euilib ip"
echo "COM is <${COM}>"
# ulimits
#
ulimit -d unlimited >${OUT}
# ulimit -s 2000000 >>${OUT}
# Current runs on the p690 use this
ulimit -s 600000 >>${OUT}
ulimit -s 600000 >>${OUT}
ulimit -m unlimited >>${OUT}
ulimit -a >>${OUT}
......@@ -82,5 +82,5 @@ ulimit -a >>${OUT}
# start douar and watch it........
#
${COM} 2>douar.err | tee -a ${OUT}
${COM} 2>${ERR} | tee -a ${OUT}
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment