Translations:Ansys/2910/en: Difference between revisions
Jump to navigation
Jump to search
(Importing a new version from external source) |
(Importing a new version from external source) |
||
Line 1: | Line 1: | ||
if [ "$SLURM_NNODES" == 1 ]; then | if [ "$SLURM_NNODES" == 1 ]; then | ||
fluent -g $MYVERSION -t $NCORES -affinity=0 -mpi= | fluent -g $MYVERSION -t $NCORES -affinity=0 -mpi=intel -pshmem -i $MYJOURNALFILE | ||
else | else | ||
fluent -g $MYVERSION -t $NCORES -affinity=0 -mpi= | fluent -g $MYVERSION -t $NCORES -affinity=0 -mpi=intel -pib -cnf=/tmp/machinefile-$SLURM_JOB_ID -i $MYJOURNALFILE | ||
fi | fi | ||
if [ $? -eq 0 ]; then | if [ $? -eq 0 ]; then |
Latest revision as of 19:43, 23 October 2024
if [ "$SLURM_NNODES" == 1 ]; then
fluent -g $MYVERSION -t $NCORES -affinity=0 -mpi=intel -pshmem -i $MYJOURNALFILE
else
fluent -g $MYVERSION -t $NCORES -affinity=0 -mpi=intel -pib -cnf=/tmp/machinefile-$SLURM_JOB_ID -i $MYJOURNALFILE
fi if [ $? -eq 0 ]; then
echo "Job completed successfully! Exiting now." scancel $SLURM_ARRAY_JOB_ID
else
echo "Job attempt $SLURM_ARRAY_TASK_ID of $SLURM_ARRAY_TASK_COUNT failed due to license or simulation issue!" if [ $SLURM_ARRAY_TASK_ID -lt $SLURM_ARRAY_TASK_COUNT ]; then echo "Resubmitting job now …" else echo "All job attempts failed exiting now." fi
fi }} </tab> </tabs>