New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
trusting.sh in branches/2015/dev_r5092_CNRS_SETTE/NEMOGCM/TRUST – NEMO

source: branches/2015/dev_r5092_CNRS_SETTE/NEMOGCM/TRUST/trusting.sh @ 5464

Last change on this file since 5464 was 5464, checked in by nicolasmartin, 9 years ago

dev_r5092_CNRS_SETTE End of main script trusting.sh size reduction

  • Property eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Rev URL
File size: 4.4 KB
RevLine 
[5268]1#!/bin/bash
2
3
[5276]4# Set defaults
[5355]5#---------------------------------------------------
6NEMO_TRUS=$( pwd $( dirname $0 ) )
[5455]7DEBUG=0; PUBLISH=0
[5464]8STATUS='FAILED'; STEP='' # Only at end status will change to OK
[5268]9
[5355]10# Get options for replacing some initials settings
11#---------------------------------------------------
[5268]12while [ $# -ne 0 ]; do
13    case $1 in
[5286]14        -b|--branch ) NEMO_BRAN=$2         ; shift 2;; -d|--debug  ) set -vx; DEBUG=1     ; shift  ;;
[5464]15   -e|--email  ) EMAIL=$2             ; shift 2;; -j|--job    ) NPROC=$2             ; shift 2;;
[5355]16   -h|--help   ) cat trusting_help.txt; exit  1;; -m|--machine) CFG_ARCH=$2          ; shift 2;;
17   -n|--newconf) TEST_CONF=$2         ; shift 2;; -r|--refconf) REFE_CONF=$2         ; shift 2;;
[5286]18   -t|--time   ) TIME_LIMI=$2         ; shift 2;; -p|--publish) PUBLISH=1            ; shift  ;;
[5383]19        -u|--user   ) CFG_USER=$2          ; shift 2;; -v|--version) NEMO_VERS=$2         ; shift 2;;
[5355]20                   *) cat trusting_help.txt; exit  1;;
[5268]21    esac
22done
[5276]23
[5355]24# Initialization (super-computer & user environment)
25#---------------------------------------------------
26if [[ ! -z "${CFG_ARCH}" && ! -z "${CFG_USER}" ]]; then
[5268]27
[5453]28    if   [ ! $( find ${NEMO_TRUS}/config -name ${CFG_USER}.cfg ) ]; then
29   echo 'No configuration file in '${NEMO_TRUS}'/config for '${CFG_USER}; exit 1
30    elif [ ! $( find ${NEMO_TRUS}/config -name ${CFG_ARCH}.cfg ) ]; then
31   echo 'No configuration file in '${NEMO_TRUS}'/config for '${CFG_ARCH}; exit 1
[5355]32    else
33   . ${NEMO_TRUS}/trusting.env
34    fi
[5268]35
[5355]36else
37    cat ${NEMO_TRUS}/trusting_help.txt; exit 1
38fi
[5268]39
[5355]40. ./trusting_func.sh
[5268]41
[5424]42#
43#---------------------------------------------------
[5355]44mkdir -p ${TEST_DIR} ${REFE_DIR}
45echo ${TEST_DIR} && cd ${TEST_DIR}
[5464]46date_str=$( date -ud ${DATESTR} +"%F %R %Z" )
47printf "Date\n${date_str}\n" > mesg_01_date_${CFG_USER}_${CFG_ARCH}.txt
[5355]48
[5444]49# SVN action on XIOS & NEMO essentials directories
50#---------------------------------------------------
[5455]51print_step 'Get NEMO code state / repository'
[5444]52get_nemo_rev
53
[5438]54# Check softwares versions (source arch environment)
[5355]55#---------------------------------------------------
[5452]56print_step 'Get softwares release'
[5438]57. ${ARCH_ENV} > /dev/null
[5424]58get_soft_rel
[5464]59cat model.log
[5268]60
[5444]61# XIOS compiling
[5355]62#---------------------------------------------------
[5452]63print_step 'Compiling XIOS'
[5444]64cd ${DIR_XIOS}
[5459]65#./make_xios --full --arch $ARCH -job $NPROC #>& /dev/null
[5455]66[ ! -e ${DIR_XIOS}/lib/libxios.a ] && get_out $STATUS $STEP
[5444]67
[5355]68# NEMO config compiled from scratch
69#---------------------------------------------------
[5452]70print_step "Compiling ${CONF_REF} configuration"
[5276]71cd ${NEMO_CONF}
[5459]72#[ -d ${TEST_CONF} ] && ./makenemo -n ${TEST_CONF} clean
[5455]73./makenemo -n ${TEST_CONF} -r ${REFE_CONF} -m $ARCH -j $NPROC #>& /dev/null
[5453]74[ ! -e ${TEST_CONF}/BLD/bin/nemo.exe ] && get_out $STATUS $STEP
[5268]75
[5355]76# Get namelists, xml & forced files for running
77#---------------------------------------------------
[5455]78print_step "Preparing job by copying ${CONF_REF} input files"
[5444]79cd ${TEST_DIR}
[5355]80find ${NEMO_CONF}/${TEST_CONF}/EXP00 -regex '.*\(cfg\|opa\|ref\|xml\)' -exec cp {} . \;
[5464]81get_inputs
[5453]82[ $? -ne 0 ] && get_out $STATUS $STEP
[5402]83[ $( find . -name '*.gz' -print -quit ) ] && gunzip *.gz
[5286]84
[5438]85# Check input files in all cases
86#---------------------------------------------------
[5464]87print_step 'Difference with standard input files list'
[5438]88diff_inputs
[5452]89
[5355]90# Job submission & computing
91#---------------------------------------------------
[5455]92print_step 'Submitting job'
[5453]93JOB_ID=$( ${JOB_SUBM} | awk '{print $NF}' )
94[ $? -ne 0 ] && get_out $STATUS $STEP
[5464]95print_step 'Holding-Running job'
96job_pending
[5455]97print_step 'Job finished'
98
[5355]99# Eventual crash during computing
100#---------------------------------------------------
[5455]101print_step 'Test if job crashed'
[5452]102if   [[ ! -e ocean.output || $( grep 'E R R O R' ocean.output ) ]]; then
[5453]103    comments 'E R R O R'
104    get_out $STATUS $STEP
[5459]105fi
[5286]106
[5459]107# Inspect output text files
108#---------------------------------------------------
109print_step 'Test ASCII output files diff'
[5464]110diff_textfiles
[5286]111
[5459]112# Inspect output NetCDF files
113#---------------------------------------------------
114print_step 'Test last restart NetCDF files diff'
115diff_restart
[5268]116
[5459]117# Get computation duration
118#---------------------------------------------------
119print_step 'Get real CPU time'
120get_cpu_time
[5268]121
[5464]122# Get comments (ocean.output & diff model.log)
[5459]123#---------------------------------------------------
124comments 'W A R N I N G'
[5268]125
[5355]126# End
127#---------------------------------------------------
[5452]128[ $STATUS == 'OK' ] && STEP='Code is reliable'
[5453]129get_out $STATUS $STEP
Note: See TracBrowser for help on using the repository browser.