/[MITgcm]/MITgcm/tools/example_scripts/ACESgrid/aces_test_ifc_mpi
ViewVC logotype

Contents of /MITgcm/tools/example_scripts/ACESgrid/aces_test_ifc_mpi

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


Revision 1.10 - (show annotations) (download)
Fri Apr 3 21:31:34 2009 UTC (15 years, 1 month ago) by jmc
Branch: MAIN
CVS Tags: checkpoint61n, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61p
Changes since 1.9: +3 -1 lines
document "ulimit -s unlimited" added in file "~/.bashrc"

1 #!/bin/bash
2 #
3 #PBS -q four-twelve
4 #PBS -N tst_ifc
5 #PBS -l nodes=2:ppn=2
6 #PBS -e /home/jmc/test_ACES/output/tst_ifc.stderr
7 #PBS -o /home/jmc/test_ACES/output/tst_ifc.stdout
8
9 # $Header: /u/gcmpack/MITgcm/tools/example_scripts/ACESgrid/aces_test_ifc_mpi,v 1.9 2009/02/28 20:54:33 jmc Exp $
10 # $Name: $
11
12 umask 0022
13 TST_DIR="/home/jmc/test_ACES/gcm_tests"
14 HERE='/home/jmc/test_ACES/output'
15 cd $HERE
16
17 if test -f /etc/profile.d/modules.sh ; then
18 . /etc/profile.d/modules.sh
19 fi
20 # Note: added "ulimit -s unlimited" in file "~/.bashrc"
21 # to pass big test (the 2 fizhi-cs-* test) with MPI
22
23 sfx='ifc'
24 module add mpich/intel
25 OPTFILE="../tools/build_options/linux_ia32_ifort+mpi_aces"
26 options='-j 2 -mpi -match 10'
27
28 checkOut=1
29 #options="$options -nc" ; checkOut=0
30 #options="$options -q" ; checkOut=0
31
32 MF=$HERE"/mf_"$sfx
33 cat $PBS_NODEFILE | sort | uniq > $MF
34 NCPU=`wc -l $MF | awk '{print $1}'`
35 EXE="mpirun -machinefile $MF -v -np $NCPU ./mitgcmuv"
36
37 # cat << EOF > $HERE"/.cvspass"
38 # /1 :pserver:cvsanon@mitgcm.org:2401/u/gcmpack Ah<Zy=0=
39 # EOF
40 gcmDIR="MITgcm_$sfx"
41 cd $TST_DIR
42 #- check for disk space:
43 dsp=`df . | tail -1 | awk '{print $5}' | sed 's/%$//'`
44 if [ $dsp -gt 99 ] ; then
45 echo 'Not enough space on this disk => do not run testreport.'
46 df .
47 exit
48 fi
49 if [ $checkOut -eq 1 ] ; then
50 if test -d $gcmDIR/CVS ; then
51 ( cd $gcmDIR/verification ; ../tools/do_tst_2+2 -clean )
52 echo "cvs update of dir $gcmDIR :"
53 ( cd $gcmDIR ; cvs -q -d :pserver:cvsanon@mitgcm.org:/u/gcmpack update -P -d )
54 /bin/rm -rf $gcmDIR/verification/??_aces-${sfx}_????????_?
55 else
56 echo "no dir: $gcmDIR/CVS => try a fresh check-out"
57 checkOut=2
58 fi
59 fi
60 if [ $checkOut -eq 2 ] ; then
61 if test -e $gcmDIR ; then
62 rm -rf $gcmDIR
63 fi
64 cvs -d :pserver:cvsanon@mitgcm.org:/u/gcmpack co -P -d $gcmDIR MITgcm > /dev/null 2>&1
65 # cvs co MITgcm
66 /usr/bin/find $gcmDIR -type d | xargs chmod g+rxs
67 /usr/bin/find $gcmDIR -type f | xargs chmod g+r
68 else
69 if test -e $gcmDIR/verification ; then
70 echo "dir $gcmDIR/verification exist"
71 else
72 echo "no dir $gcmDIR/verification => exit"
73 exit
74 fi
75 fi
76
77 cd $gcmDIR/verification
78 echo ./testreport $options -of $OPTFILE -command \"$EXE\" -odir aces-$sfx
79 ./testreport $options -of $OPTFILE -command "$EXE" -odir aces-$sfx
80
81 echo ../tools/do_tst_2+2 -mpi -exe \"$EXE\" -o aces-$sfx -a NONE
82 ../tools/do_tst_2+2 -mpi -exe "$EXE" -o aces-$sfx -a NONE

  ViewVC Help
Powered by ViewVC 1.1.22