source: dynamico_lmdz/simple_physics/config/DYNAMICO/TEST_IRENE/job.sh @ 4231

Last change on this file since 4231 was 4231, checked in by dubos, 5 years ago

simple_physics : DYNAMICO driver (TBC)

File size: 1.1 KB
Line 
1#!/bin/bash
2## Request name
3#MSUB -r DYNAMICO_phyparam_mpi
4## Number of tasks (=MPI processes) to use
5#MSUB -n 40
6## Number of OpenMP threads
7#MSUB -c 1
8## Elapsed time limit in seconds
9#MSUB -T 300
10# account, partition (Xeon/KNL)
11#MSUB -A gen0239
12#MSUB -q skylake
13# Mount  on compute node
14#MSUB -m work
15## Quality of Service required (long [3 days], normal [1 day], test [30 min])
16#MSUB -Q test
17
18export OMP_NUM_THREADS=1
19export OMP_STACKSIZE=128M
20
21cd ${BRIDGE_MSUB_PWD} 
22
23# module c++/gnu is needed to link with XIOS
24# module feature/openmpi/mpi_compiler/intel is made necessary by c++/gnu
25
26module purge
27module load feature/openmpi/mpi_compiler/intel
28module load c++/gnu/7.3.0
29module load intel/17.0.6.256
30module load mpi/openmpi/2.0.4
31module load flavor/hdf5/parallel
32module load netcdf-fortran/4.4.4
33module load mkl/17.0.6.256
34module load hdf5/1.8.20
35module load parmetis/4.0.3
36
37rm -rf gcm.log logs *.nc netcdf
38
39date > gcm.log
40ulimit -s unlimited
41ccc_mprun ./gcm.exe >> gcm.log
42date >> gcm.log
43
44mkdir -p netcdf
45cp gcm.log *.def netcdf
46mv *.nc netcdf
47
48mkdir -p logs
49cp *.xml logs
50mv xios_client_*.err xios_client_*.out gcm.log logs
Note: See TracBrowser for help on using the repository browser.