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.
batch-x3750_ADA in branches/2014/dev_r4650_UKMO13_CICE_changes_take2/NEMOGCM/SETTE/BATCH_TEMPLATE – NEMO

source: branches/2014/dev_r4650_UKMO13_CICE_changes_take2/NEMOGCM/SETTE/BATCH_TEMPLATE/batch-x3750_ADA @ 4921

Last change on this file since 4921 was 4921, checked in by timgraham, 9 years ago

merged with revision 4879 of trunk

  • Property svn:executable set to *
File size: 1.7 KB
Line 
1#!/bin/bash
2#!
3# @ job_name = MPI_config
4# standard output file 
5# @ output = $(job_name).$(jobid)
6# standard error file
7# @ error =  $(job_name).$(jobid)
8# job type
9# @ job_type = parallel
10# Number of procs
11# @ total_tasks = NPROCS
12# time
13# @ wall_clock_limit = 0:30:00
14# @ queue
15
16#
17# Test specific settings. Do not hand edit these lines; the fcm_job.sh script will set these
18# (via sed operating on this template job file).
19#
20  OCEANCORES=NPROCS
21  export SETTE_DIR=DEF_SETTE_DIR
22
23###############################################################
24#
25# set up mpp computing environment
26#
27# Local settings for machine IBM Power6 (VARGAS at IDRIS France)
28#
29export MPIRUN="poe"
30
31#
32# load sette functions (only post_test_tidyup needed)
33#
34  . ${SETTE_DIR}/all_functions.sh
35#
36
37# Don't remove neither change the following line
38# BODY
39
40#
41# These variables are needed by post_test_tidyup function in all_functions.sh
42#
43  export EXE_DIR=DEF_EXE_DIR
44  export INPUT_DIR=DEF_INPUT_DIR
45  export CONFIG_DIR=DEF_CONFIG_DIR
46  export NEMO_VALIDATION_DIR=DEF_NEMO_VALIDATION
47  export NEW_CONF=DEF_NEW_CONF
48  export CMP_NAM=DEF_CMP_NAM
49  export TEST_NAME=DEF_TEST_NAME
50#
51# end of set up
52###############################################################
53#
54# change to the working directory
55#
56cd ${EXE_DIR}
57
58  echo Running on host `hostname`
59  echo Time is `date`
60  echo Directory is `pwd`
61#
62#  Run the parallel MPI executable
63#
64#  echo "Running time ${MPIRUN} ./opa"
65#
66  if [ MPI_FLAG == "yes" ]; then
67     echo "Running time ${MPIRUN} ./opa -procs $OCEANCORES"
68     time ${MPIRUN} ./opa -procs $OCEANCORES
69  else
70     echo "Running time ./opa"
71     time ./opa
72  fi
73
74#
75  post_test_tidyup
76
77# END_BODY
78# Don't remove neither change the previous line
79
80
81  exit
Note: See TracBrowser for help on using the repository browser.