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-PW6_CALYPSO in branches/UKMO/ROMS_WAD_7832/NEMOGCM/SETTE/BATCH_TEMPLATE – NEMO

source: branches/UKMO/ROMS_WAD_7832/NEMOGCM/SETTE/BATCH_TEMPLATE/batch-PW6_CALYPSO @ 8841

Last change on this file since 8841 was 8841, checked in by deazer, 6 years ago

Bring in Trunk Changes at version 8814
This revision wont run as is, requires next revision with merged changes
This revision serves as a reference point to what changes from the trunk at brought in by the merge
in the next revision

  • Property svn:executable set to *
File size: 1.6 KB
Line 
1#!/bin/bash
2#!
3#BSUB -q poe_short
4#BSUB -n NPROCS
5#BSUB -a poe
6#BSUB -J MPI_config
7#BSUB -o poe.stdout.%J
8#BSUB -e poe.stderr.%J
9
10 
11
12###############################################################
13# Test specific settings. Do not hand edit these lines; the fcm_job.sh script will set these
14# (via sed operating on this template job file).
15#
16  OCEANCORES=NPROCS
17  export SETTE_DIR=DEF_SETTE_DIR
18
19###############################################################
20#
21# set up mpp computing environment
22#
23# Local settings for machine IBM Power6 (VARGAS at IDRIS France)
24#
25
26# export MPIRUN="mpirun -n $OCEANCORES"
27
28export MPIRUN="mpirun.lsf"
29
30#
31# load sette functions (only post_test_tidyup needed)
32#
33  . ${SETTE_DIR}/all_functions.sh
34
35
36# Don't remove neither change the following line
37# BODY
38
39#
40# These variables are needed by post_test_tidyup function in all_functions.sh
41#
42  export EXE_DIR=DEF_EXE_DIR
43  export INPUT_DIR=DEF_INPUT_DIR
44  export CONFIG_DIR=DEF_CONFIG_DIR
45  export TOOLS_DIR=DEF_TOOLS_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###############################################################
55#
56# change to the working directory
57#
58cd ${EXE_DIR}
59
60#
61  echo Running on host `hostname`
62  echo Time is `date`
63  echo Directory is `pwd`
64#
65#  Run the parallel MPI executable
66#
67#  echo "Running time ${MPIRUN} " $OCEANCORES " ./opa"
68#
69
70  if [ MPI_FLAG == "yes" ]; then
71     time ${MPIRUN} ./opa
72  else
73     time ./opa
74  fi
75#
76  post_test_tidyup
77
78# END_BODY
79# Don't remove neither change the previous line
80
81  exit
Note: See TracBrowser for help on using the repository browser.