/[MITgcm]/MITgcm_contrib/test_scripts/sx8/mitgcmtestreport_split
ViewVC logotype

Contents of /MITgcm_contrib/test_scripts/sx8/mitgcmtestreport_split

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (show annotations) (download)
Fri Feb 27 14:14:40 2015 UTC (11 years, 6 months ago) by mlosch
Branch: MAIN
Changes since 1.3: +33 -11 lines
pimp up the script a little, fix small bugs

1 #!/bin/bash
2 # new script for running testreport on sx8.awi.de
3 # - split the testreport into 3 steps:
4 # 1/ compiling on head node (tx7.awi.de), with -norun option
5 # 2/ running on compute node (using PBS qsub), with -runonly option
6 # 3/ evaluating result on head node with -runonly option
7 #
8 # Notes:
9 # - step 2 leads to many error messages, because the OS on the compute
10 # nodes does not have the appropriate shell tools, modifying the
11 # - runonly option to skip the evalution step would be nice but not
12 # necessary; you'll just have to live with the error messages
13 # - step 3 assumes that all experiments have been run successfully, i.e.
14 # that the output files are up-to-date.
15 # if not, testreport will try to run the sx8-code on the tx7 frontend
16 # which will fail inevitably and produce more errors, maybe we can
17 # have a flag that skips everything but the evaluation step to avoid this
18 # $Header: /u/gcmpack/MITgcm_contrib/test_scripts/sx8/mitgcmtestreport_split,v 1.3 2015/02/26 17:52:45 mlosch Exp $
19 # $Name: $
20
21 # load latest compiler:
22 module load sxf90/460
23
24 VENDOR=sxf90
25 RUNIT="runit_"$VENDOR
26 HERE=`pwd`
27 EXE='mpirun -np TR_NPROC ./mitgcmuv'
28 NPROCS=2
29 MPI="-MPI $NPROCS"
30 OUTFILE=/home/sx8/mlosch/out_${VENDOR}
31 MYOUTPUT=/home/sx8/mlosch/testreport_${VENDOR}
32 OUTFILE=out_${VENDOR}
33 JOBNAME=testsx8
34 JOBSCRIPT=job_${VENDOR}
35 #selectexperiment='-t exp2'
36 selectexperiment=''
37 # download code into this directory
38 TDIR=/sx8/scr/mlosch/tmp_$VENDOR
39
40 OPTFILE=../tools/build_options/SUPER-UX_SX-8_sxf90_awi
41
42 RUNTESTREPORT="./testreport $MPI -of=${OPTFILE} $selectexperiment"
43 #
44 # create batch script
45 #
46 cat << EOF > $HERE/$JOBSCRIPT
47 #PBS -q sx8-r # job queue not neccesary so far
48 #PBS -N $JOBNAME # give the job a name
49 #PBS -l cpunum_job=$NPROCS # cpus per node
50 #PBS -l cputim_job=2:00:00 # time limit
51 #PBS -l memsz_job=32gb # max accumulated memory, we need this much because of many netcdf files
52 #PBS -j o # join i/o
53 #PBS -S /bin/sh
54 #PBS -o $OUTFILE # o Where to write output
55 #
56
57 cd \${PBS_O_WORKDIR}
58 $RUNTESTREPORT -runonly -command "$EXE" >> $MYOUTPUT 2>&1
59
60 EOF
61
62 # clean up old testreport output
63 if [ -e $MYOUTPUT ]; then
64 rm -rf $MYOUTPUT
65 fi
66 if [ -e $OUTFILE ]; then
67 rm -r $OUTFILE
68 fi
69 if [ 0 = 0 ]; then
70 # create directory and download code
71 if [ -e $TDIR ]; then
72 rm -rf $TDIR
73 fi
74 mkdir $TDIR
75 cd $TDIR
76 # cvs -d :pserver:cvsanon@mitgcm.org:/u/gcmpack co MITgcm_verif_basic > cvs_co.log 2>&1
77 cvs -d :pserver:cvsanon@mitgcm.org:/u/gcmpack co MITgcm > cvs_co.log 2>&1
78 if [ $status > 0 ]; then
79 cat cvs_co.log
80 fi
81 else
82 cvs -d :pserver:cvsanon@mitgcm.org:/u/gcmpack -q update >> cvs_co.log 2>&1
83 if [ $status > 0 ]; then
84 cat cvs_co.log
85 fi
86 fi
87
88 cd $TDIR/MITgcm/verification
89
90 # make sure that we do not use the cross compiler for testreport
91 unset CC
92 # make sure that do use the cross compiler for testreport
93 #export CC=sxcc
94
95 $RUNTESTREPORT -j 8 -norun > $MYOUTPUT 2>&1
96
97 if [ $status > 0 ]
98 then
99 echo "something wrong with testreport"
100 echo "keeping the working directory"
101 #else
102 # echo "check restarts"
103 # echo ../tools/do_tst_2+2 -mpi -exe \"$HERE/$RUNIT\" -a NONE
104 # ../tools/do_tst_2+2 -mpi -exe $HERE/$RUNIT -a NONE
105 # everything OK: delete working directory
106 # rm -rf $TDIR
107 fi
108
109 if [ ! -e $MYOUTPUT ]
110 then
111 touch $MYOUTPUT
112 fi
113
114 echo " " >> $MYOUTPUT
115 echo "***********************************************************" >> $MYOUTPUT
116 echo "Submitting this job script:" >> $MYOUTPUT
117 echo "***********************************************************" >> $MYOUTPUT
118 cat $HERE/$JOBSCRIPT >> $MYOUTPUT
119 echo "***********************************************************" >> $MYOUTPUT
120 echo "end of job script" >> $MYOUTPUT
121 echo "***********************************************************" >> $MYOUTPUT
122 echo " " >> $MYOUTPUT
123
124 # now submit the job that actually runs all the experiments in one go
125 qsub $HERE/$JOBSCRIPT
126 # keep looking for the job in the job queues and wait until has disappeared
127 jobruns=`qstat -n -u mlosch | grep "$JOBNAME"`
128 while [ "${jobruns}"x != x ]
129 do
130 sleep 20
131 jobruns=`qstat -n -u mlosch | grep "$JOBNAME"`
132 echo "waiting for job ${jobruns%% *} ($JOBNAME) to complete"
133 currentexp=`grep Experiment $MYOUTPUT | tail -1`
134 echo "currently running $currentexp"
135 done
136
137 # after running the experiments on the compute node run testreport
138 # for a third time to evaluate results on the head node again
139 echo " " >> $MYOUTPUT
140 echo "now run testreport for a final time to evaluate results:" >> $MYOUTPUT
141 echo "$RUNTESTREPORT -match 10 -runonly" >> $MYOUTPUT
142 #$RUNTESTREPORT -match 10 -runonly >> $MYOUTPUT 2>&1
143 $RUNTESTREPORT -match 10 -runonly \
144 -a "jmc@mitgcm.org, Martin.Losch@awi.de" >> $MYOUTPUT 2>&1
145
146 echo "end of mitgcmtestreport_split"

  ViewVC Help
Powered by ViewVC 1.1.22