Changeset 3417 for trunk/LMDZ.COMMON
- Timestamp:
- Aug 22, 2024, 2:44:54 PM (3 months ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/changelog.txt
r3416 r3417 407 407 == 22/08/2024 == JBC 408 408 Adaptation of the job submission script to get enough memory for the job without asking the exclusive mode. 409 410 == 22/08/2024 == JBC 411 Small update for the launching script. -
trunk/LMDZ.COMMON/libf/evolution/deftank/PEMrun.job
r3416 r3417 5 5 #SBATCH --constraint=GENOA 6 6 ### Number of Nodes to use 7 #SBATCH --nodes=1 7 8 #SBATCH --ntasks=1 9 #SBATCH --cpus-per-task=1 8 10 ###SBATCH --exclusive 9 11 #SBATCH --output=jobPEM_%j.out -
trunk/LMDZ.COMMON/libf/evolution/deftank/launchPEM.sh
r3391 r3417 81 81 if [ $relaunch = "PCM" ]; then 82 82 echo "What is the number of the PCM run?" 83 echo "It should be between 1 and $(( iPCM - 1))."83 echo "It should be between 1 and $(( $((iPCM - 1)) > 1 ? $((iPCM - 1)) : 1 ))." 84 84 read irelaunch 85 if [ 0 -lt $irelaunch ] && [ $irelaunch -lt $iPCM]; then85 if [ 1 -le $irelaunch ] && [ $irelaunch -le $(( $((iPCM - 1)) > 1 ? $((iPCM - 1)) : 1 )) ]; then 86 86 break 87 87 else … … 90 90 else 91 91 echo "What is the number of the PEM run?" 92 echo "It should be between 1 and $(( iPEM - 1))."92 echo "It should be between 1 and $(( $((iPEM - 1)) > 1 ? $((iPEM - 1)) : 1 ))." 93 93 read irelaunch 94 if [ 0 -lt $irelaunch ] && [ $irelaunch -lt $iPEM]; then94 if [ 1 -le $irelaunch ] && [ $irelaunch -le $(( $((iPEM - 1)) > 1 ? $((iPEM - 1)) : 1 )) ]; then 95 95 break 96 96 else
Note: See TracChangeset
for help on using the changeset viewer.