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

Annotation of /MITgcm/tools/example_scripts/ACESgrid/aces_test_pgi_mpi

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


Revision 1.15 - (hide annotations) (download)
Fri Jan 21 05:04:38 2011 UTC (13 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint63a, checkpoint63, checkpoint62s, checkpoint62r, checkpoint62w, checkpoint62v, checkpoint62u, checkpoint62t, checkpoint62z, checkpoint62y, checkpoint62x
Changes since 1.14: +10 -11 lines
switch to new testreport mpi option which allows different number of procs
 for each experiment.

1 jmc 1.1 #!/bin/bash
2     #
3 jmc 1.4 #PBS -q four-twelve
4 jmc 1.1 #PBS -N tst_pgi
5 jmc 1.15 #PBS -l nodes=3:ppn=2
6 jmc 1.1 #PBS -e /home/jmc/test_ACES/output/tst_pgi.stderr
7     #PBS -o /home/jmc/test_ACES/output/tst_pgi.stdout
8 jmc 1.15
9     # $Header: /u/gcmpack/MITgcm/tools/example_scripts/ACESgrid/aces_test_pgi_mpi,v 1.14 2010/12/14 21:34:45 jmc Exp $
10 jmc 1.1 # $Name: $
11    
12 jmc 1.9 if test -f /etc/profile.d/modules.sh ; then
13     . /etc/profile.d/modules.sh
14     fi
15     # Note: added "ulimit -s unlimited" in file "~/.bashrc"
16 jmc 1.15 # to pass big test (the 2 fizhi-cs-* test & adjoint tests) with MPI
17 jmc 1.9
18 jmc 1.5 umask 0022
19 jmc 1.9 #- to get case insensitive "ls" (and order of tested experiments)
20     export LC_ALL="en_US.UTF-8"
21    
22 jmc 1.11 TST_DIR="/home/jmc/test_ACES"
23     HERE=$TST_DIR/output
24     #cd $HERE
25 jmc 1.5
26     sfx='pgi'
27     module add mpich/$sfx
28     OPTFILE="../tools/build_options/linux_ia32_pgf77+mpi_aces"
29 jmc 1.15 options="-MPI 6 -mf $PBS_NODEFILE"
30 jmc 1.12 #options="$options -skd tutorial_advection_in_gyre"
31 jmc 1.15 EXE="mpirun -machinefile TR_MFILE -v -np TR_NPROC ./mitgcmuv"
32    
33     #- keep a copy of MPI_MFILE:
34     cp -p $PBS_NODEFILE $HERE"/mf_"$sfx
35 jmc 1.1
36 jmc 1.6 checkOut=1
37     #options="$options -nc" ; checkOut=0
38     #options="$options -q" ; checkOut=0
39    
40 jmc 1.5 gcmDIR="MITgcm_$sfx"
41     cd $TST_DIR
42 jmc 1.7 #- check for disk space:
43 jmc 1.14 dsp=`df -P . | tail -1 | awk '{print $5}' | sed 's/%$//'`
44 jmc 1.7 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 jmc 1.10 /bin/rm -rf $gcmDIR/verification/tr_aces-${sfx}_????????_?
52     # ( cd $gcmDIR/verification ; ../tools/do_tst_2+2 -clean )
53 jmc 1.7 echo "cvs update of dir $gcmDIR :"
54 jmc 1.13 ( cd $gcmDIR ; cvs -q -d :pserver:cvsanon@mitgcm.org:/u/gcmpack update -P -d ) 2>&1
55 jmc 1.7 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 jmc 1.6 if test -e $gcmDIR ; then
62     rm -rf $gcmDIR
63     fi
64 jmc 1.15 # cvs co MITgcm
65 jmc 1.6 cvs -d :pserver:cvsanon@mitgcm.org:/u/gcmpack co -P -d $gcmDIR MITgcm > /dev/null 2>&1
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 jmc 1.8 echo "dir $gcmDIR/verification exist"
71 jmc 1.6 else
72     echo "no dir $gcmDIR/verification => exit"
73     exit
74     fi
75 jmc 1.1 fi
76    
77 jmc 1.5 cd $gcmDIR/verification
78 jmc 1.8 echo ./testreport $options -of $OPTFILE -command \"$EXE\" -odir aces-$sfx
79 jmc 1.5 ./testreport $options -of $OPTFILE -command "$EXE" -odir aces-$sfx
80 jmc 1.1

  ViewVC Help
Powered by ViewVC 1.1.22