[3349] | 1 | #!/bin/bash |
---|
| 2 | #SBATCH --job-name=jobPCM0 |
---|
| 3 | #SBATCH --account=cin0391 |
---|
| 4 | ### GENOA nodes accommodate 96 cores |
---|
| 5 | #SBATCH --constraint=GENOA |
---|
| 6 | ### Number of Nodes to use |
---|
| 7 | #SBATCH --nodes=1 |
---|
[3351] | 8 | #SBATCH --ntasks-per-node=24 |
---|
[3349] | 9 | #SBATCH --cpus-per-task=4 |
---|
| 10 | #SBATCH --threads-per-core=1 # --hint=nomultithread |
---|
| 11 | ###SBATCH --exclusive |
---|
[3403] | 12 | #SBATCH --output=jobPCM_%j.out |
---|
[3416] | 13 | #SBATCH --time=10:00:00 |
---|
[3349] | 14 | |
---|
[3351] | 15 | # A few parameters that might need to be changed depending on your setup |
---|
| 16 | # Path to the arch.env to source: |
---|
[3349] | 17 | source ../trunk/LMDZ.COMMON/arch.env |
---|
| 18 | |
---|
[3403] | 19 | # Number of threads to use (must be the same as "#SBATCH --cpus-per-task=" above) |
---|
| 20 | export OMP_NUM_THREADS=$SLURM_CPUS_PER_TASK |
---|
[3349] | 21 | export OMP_STACKSIZE=400M |
---|
| 22 | |
---|
[3351] | 23 | # Name of executable for the PCM: |
---|
| 24 | exePCM="gcm_64x48x32_phymars_para.e" |
---|
| 25 | ######################################################################## |
---|
| 26 | |
---|
[3403] | 27 | |
---|
| 28 | ulimit -s unlimited |
---|
| 29 | |
---|
[3354] | 30 | # Running the PCM |
---|
[3351] | 31 | echo "Run PCM $iPCM is starting." |
---|
[3349] | 32 | read i_myear n_myear convert_years iPCM iPEM nPCM nPCM_ini < info_PEM.txt |
---|
| 33 | cp run_PCM.def run.def |
---|
[3351] | 34 | srun --cpu-bind=threads --label -c${OMP_NUM_THREADS:=1} $exePCM > out_runPCM${iPCM} 2>&1 |
---|
[3386] | 35 | if [ ! -f "restartfi.nc" ] || ! (tail -n 1 out_runPCM${iPCM} | grep -iq "everything is cool!"); then # Check if it ended abnormally |
---|
[3349] | 36 | echo "Error: the run PCM $iPCM crashed!" |
---|
| 37 | echo "Be careful: there may be dependent jobs remaining in the SLURM queue with status 'DependencyNeverSatisfied'! You can cancel them by executing the script \"kill_launchPEM.sh\"." |
---|
| 38 | exit 1 |
---|
| 39 | fi |
---|
[3354] | 40 | |
---|
[3349] | 41 | # Copy data files and prepare the next run |
---|
| 42 | mv out_runPCM${iPCM} out_PCM/run${iPCM} |
---|
[3386] | 43 | if [ -f "diagfi.nc" ]; then |
---|
| 44 | mv diagfi.nc diags/diagfi${iPCM}.nc |
---|
| 45 | fi |
---|
[3349] | 46 | if [ -f "diagsoil.nc" ]; then |
---|
| 47 | mv diagsoil.nc diags/diagsoil${iPCM}.nc |
---|
| 48 | fi |
---|
| 49 | if [ -f "stats.nc" ]; then |
---|
| 50 | mv stats.nc diags/stats${iPCM}.nc |
---|
| 51 | fi |
---|
| 52 | k=0 |
---|
| 53 | if [ $(echo "$k < 1" | bc -l) -eq 1 ]; then # Only the last 2 years are taken for the PEM |
---|
| 54 | mv Xdiurnalave.nc diags/data2reshape${iPCM}.nc |
---|
| 55 | else |
---|
| 56 | cp Xdiurnalave.nc diags/data2reshape${iPCM}.nc |
---|
| 57 | mv Xdiurnalave.nc data2reshape_Y${k}.nc |
---|
| 58 | fi |
---|
| 59 | cp restartfi.nc starts/restartfi${iPCM}.nc |
---|
| 60 | mv restartfi.nc startfi.nc |
---|
| 61 | if [ -f "restart.nc" ]; then |
---|
| 62 | cp restart.nc starts/restart${iPCM}.nc |
---|
| 63 | mv restart.nc start.nc |
---|
| 64 | elif [ -f "restart1D.txt" ]; then |
---|
| 65 | cp restart1D.txt starts/restart1D${iPCM}.txt |
---|
| 66 | mv restart1D.txt start1D.txt |
---|
| 67 | fi |
---|
| 68 | ((iPCM++)) |
---|
| 69 | ((i_myear++)) |
---|
| 70 | sed -i "1s/.*/$i_myear $n_myear $convert_years $iPCM $iPEM $nPCM $nPCM_ini/" info_PEM.txt |
---|