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 utils/tools/REBUILD_NEMO/BATCH_TEMPLATES – NEMO

source: utils/tools/REBUILD_NEMO/BATCH_TEMPLATES/rebuild_nemo_batch_XC40_METO @ 10727

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

Added code to increase permitted number of open files

  • Property svn:executable set to *
File size: 328 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
13ulimit -n NOPEN
14
15module load cray-snplauncher
16cd $PBS_O_WORKDIR
17${indir}/rebuild_nemo.exe $nam_rebuild
18
19RC=$?
20
21exit $RC
Note: See TracBrowser for help on using the repository browser.