1 |
#! /usr/bin/env bash |
2 |
|
3 |
##REM #PBS -S /bin/bash |
4 |
##REM #PBS -NaMITgcm_ifort |
5 |
##REM #PBS -l ncpus=2 |
6 |
##REM # PBS -l mem=7776MB |
7 |
##REM #PBS -l walltime=4:00:00 |
8 |
##REM #PBS -j oe |
9 |
##REM # PBS -W group_list=g12345 |
10 |
##REM # PBS -m e |
11 |
|
12 |
echo -n "Setting up modules... " |
13 |
. /opt/modules/default/init/bash |
14 |
module purge |
15 |
### OLD! module load modules scsl.1.5.0.0 intel-comp.8.1.024 mpt.1.11-85 |
16 |
module load modules scsl.1.5.0.0 intel-comp.9.0.027 mpt.1.12.0.0 |
17 |
echo "done" |
18 |
|
19 |
echo -n "Getting MITgcm from cvs perver... " |
20 |
cd /nobackup2/edhill |
21 |
test -e MITgcm && rm -rf MITgcm |
22 |
export CVSROOT=':pserver:cvsanon@mitgcm.org:/u/gcmpack' |
23 |
cvs co MITgcm > /dev/null 2>&1 |
24 |
echo "done" |
25 |
|
26 |
ulimit -s unlimited |
27 |
|
28 |
cd MITgcm/verification/ |
29 |
./testreport -mpi \ |
30 |
-of=/nobackup2/edhill/MITgcm/tools/build_options/linux_ia64_ifort+mpi_altix_nas -pc \ |
31 |
-command '(mpirun -np 2 ./mitgcmuv ; sleep 2 ; cp STDOUT.0000 output.txt)' \ |
32 |
-j 16 -a edhill@mitgcm.org |
33 |
|
34 |
# -end of script- |