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-mpmd-X64_MOBILIS in trunk/NEMOGCM/SETTE/BATCH_TEMPLATE – NEMO

source: trunk/NEMOGCM/SETTE/BATCH_TEMPLATE/batch-mpmd-X64_MOBILIS @ 4687

Last change on this file since 4687 was 4687, checked in by acc, 10 years ago

#1351 alternative loop structure to fix errors in dynspg_ts.F90 when compiling with -O3 and the ifort compiler. Without this change the AMM12 SETTE tests fail after 12 timesteps. Also included a single line efficiency change in domzgr.F90 and improvements to sette scripts and local NOCS files.

  • Property svn:executable set to *
File size: 2.6 KB
Line 
1#!/bin/bash
2#SBATCH -N NODES
3#SBATCH --time=00:59:00
4
5module purge
6module load shared
7module load gcc
8module load intel/compiler/64/14.0/2013_sp1.2.144
9module load openmpi/intel/64/1.6.5
10module load slurm/2.5.7
11
12#
13  export OMP_NUM_THREADS=1
14  export OCORES=NPROCS
15  export XCORES=NXIOPROCS
16  export SETTE_DIR=DEF_SETTE_DIR
17  export XIO_HOME=/home/acc/XIOS
18#
19# load sette functions (only post_test_tidyup needed)
20#
21  . ${SETTE_DIR}/all_functions.sh
22###############################################################
23#
24# set up mpp computing environment
25#
26#
27# Local settings. These settings are for a particular machine (the MOBILIS ClusterVision
28# system at NOCS) at a particular stage of that machine's evolution. This template file
29# is provided for illustration purposes only and will not work on any other machine. There
30# should, however, be sufficient similarity with other MPP platforms and batch systems
31# for this example to provide a useful guide for experienced users
32#
33# Don't remove neither change the following line
34# BODY
35#
36# Test specific settings. Do not hand edit these lines; the fcm_job.sh script will set these
37# (via sed operating on this template job file). Note that the number of compute nodes required
38# is also set by the fcm_job.sh on the PBS select header line above.
39#
40# These variables are needed by post_test_tidyup function in all_functions.sh
41#
42  export INPUT_DIR=DEF_INPUT_DIR
43  export CONFIG_DIR=DEF_CONFIG_DIR
44  export NEMO_VALIDATION_DIR=DEF_NEMO_VALIDATION
45  export NEW_CONF=DEF_NEW_CONF
46  export CMP_NAM=DEF_CMP_NAM
47  export TEST_NAME=DEF_TEST_NAME
48  export EXE_DIR=DEF_EXE_DIR
49#
50# end of set up
51###############################################################
52#
53# change to the working directory
54#
55  cd $EXE_DIR
56  echo Directory is `pwd`
57  if [ ! -f ./xios_server.exe ] && [ -f ${XIO_HOME}/bin/xios_server.exe ] 
58   then
59     cp ${XIO_HOME}/bin/xios_server.exe .
60  fi
61  if [ ! -f ./xios_server.exe ]
62   then
63     echo "./xios_server.exe not found"
64     echo "run aborted"
65     exit
66  fi
67#
68#
69#  Run the parallel MPI executable
70#
71echo time `which mpirun` --report-bindings -x MALLOC_MMAP_MAX_=-1 \
72                         -x MALLOC_TRIM_THRESHOLD_=33554432 -np $XCORES ./xios_server.exe \
73                        : -np $OCORES --bynode  --mca mpi_paffinity_alone 1 ./opa
74#
75     time `which mpirun` --report-bindings -x MALLOC_MMAP_MAX_=-1 \
76                         -x MALLOC_TRIM_THRESHOLD_=33554432 -np $XCORES ./xios_server.exe \
77                        : -np $OCORES --bynode  --mca mpi_paffinity_alone 1 ./opa
78#
79#
80  post_test_tidyup
81# END_BODY
82# Don't remove neither change the previous line
83  exit
Note: See TracBrowser for help on using the repository browser.