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.
rebuild_nemo_batch_XC40_METO in branches/UKMO/dev_r7681_rebuild_nemo/NEMOGCM/TOOLS/REBUILD_NEMO/BATCH_TEMPLATES – NEMO

source: branches/UKMO/dev_r7681_rebuild_nemo/NEMOGCM/TOOLS/REBUILD_NEMO/BATCH_TEMPLATES/rebuild_nemo_batch_XC40_METO @ 7685

Last change on this file since 7685 was 7685, checked in by timgraham, 7 years ago

Added option to specify required memory for jobs submitted to a compute node

  • Property svn:executable set to *
File size: 312 bytes
Line 
1#!/bin/bash --login
2#PBS -N Rebuild_Nemo
3#PBS -q shared
4#PBS -l ncpus=NTHREADS
5#PBS -l mem=MEMORY
6#PBS -l walltime=1:0:0
7
8export OMP_NUM_THREADS=NTHREADS
9indir=INDIR
10nam_rebuild=NAMELIST
11
12ulimit -s unlimited
13
14module load cray-snplauncher
15cd $PBS_O_WORKDIR
16${indir}/rebuild_nemo.exe $nam_rebuild
17
18RC=$?
19
20exit $RC
Note: See TracBrowser for help on using the repository browser.