1 | #!/bin/bash |
---|
2 | #MSUB -T 36000 #3600 # elapsed time limit in seconds (60 minutes) |
---|
3 | #MSUB -r SETTE_JOB # Job name |
---|
4 | #MSUB -o sette.jobid_%I.txt # standard output |
---|
5 | #MSUB -e sette.jobid_%I.txt # standard error |
---|
6 | #MSUB -n NPROCS # Total number of mpi task to use |
---|
7 | #MSUB -A gen6895 # project name |
---|
8 | #MSUB -q skylake # (queue name) only for thin nodes |
---|
9 | ########################################################################## |
---|
10 | # |
---|
11 | # Test specific settings. Do not hand edit these lines; the fcm_job.sh script will set these |
---|
12 | # (via sed operating on this template job file). |
---|
13 | # |
---|
14 | OCEANCORES=NPROCS |
---|
15 | export SETTE_DIR=DEF_SETTE_DIR |
---|
16 | # |
---|
17 | # set up mpp computing environment |
---|
18 | # |
---|
19 | # Local settings for machine BULL (TITANE at CCRT France) |
---|
20 | # |
---|
21 | export MPIRUN="ccc_mprun -n $OCEANCORES" |
---|
22 | |
---|
23 | # |
---|
24 | # load sette functions (only post_test_tidyup needed) |
---|
25 | # |
---|
26 | . ${SETTE_DIR}/all_functions.sh |
---|
27 | # |
---|
28 | |
---|
29 | # modules to load |
---|
30 | |
---|
31 | # Don't remove neither change the following line |
---|
32 | # BODY |
---|
33 | |
---|
34 | # |
---|
35 | # These variables are needed by post_test_tidyup function in all_functions.sh |
---|
36 | # |
---|
37 | export EXE_DIR=DEF_EXE_DIR |
---|
38 | export INPUT_DIR=DEF_INPUT_DIR |
---|
39 | export CONFIG_DIR=DEF_CONFIG_DIR |
---|
40 | export TOOLS_DIR=DEF_TOOLS_DIR |
---|
41 | export NEMO_VALIDATION_DIR=DEF_NEMO_VALIDATION |
---|
42 | export NEW_CONF=DEF_NEW_CONF |
---|
43 | export CMP_NAM=DEF_CMP_NAM |
---|
44 | export TEST_NAME=DEF_TEST_NAME |
---|
45 | # |
---|
46 | # end of set up |
---|
47 | ############################################################### |
---|
48 | # |
---|
49 | # change to the working directory |
---|
50 | # |
---|
51 | cd ${EXE_DIR} |
---|
52 | |
---|
53 | echo Running on host `hostname` |
---|
54 | echo Time is `date` |
---|
55 | echo Directory is `pwd` |
---|
56 | # |
---|
57 | # Run the parallel MPI executable |
---|
58 | # |
---|
59 | echo "Running time ${MPIRUN} ./nemo" |
---|
60 | # |
---|
61 | if [ MPI_FLAG == "yes" ]; then |
---|
62 | time ${MPIRUN} ./nemo |
---|
63 | else |
---|
64 | time ./nemo |
---|
65 | fi |
---|
66 | |
---|
67 | # |
---|
68 | post_test_tidyup |
---|
69 | |
---|
70 | # END_BODY |
---|
71 | # Don't remove neither change the previous line |
---|
72 | |
---|
73 | |
---|
74 | exit |
---|
75 | |
---|