GOTHIC: include exit code, add --x11/interactive

This commit is contained in:
caubet_m 2022-08-24 13:42:48 +02:00
parent 5719e247ef
commit dddb88a94a

View File

@ -181,8 +181,12 @@ the job, as showed above.
/data/project/general/software/gothic/gothic8.3qa/bin/gothic_s.sh $INPUT_FILE -m -np $SLURM_CPUS_PER_TASK /data/project/general/software/gothic/gothic8.3qa/bin/gothic_s.sh $INPUT_FILE -m -np $SLURM_CPUS_PER_TASK
gth_exit_code=$? gth_exit_code=$?
# Clean up data in /scratch
rm -rf /scratch/$USER/$SLURM_JOB_ID rm -rf /scratch/$USER/$SLURM_JOB_ID
# Return exit code from GOTHIC
exit $gth_exit_code
``` ```
* Requesting 22 CPUs from a node, with default memory per CPU (4000MB/CPU): * Requesting 22 CPUs from a node, with default memory per CPU (4000MB/CPU):
```bash ```bash
@ -204,6 +208,9 @@ the job, as showed above.
/data/project/general/software/gothic/gothic8.3qa/bin/gothic_s.sh $INPUT_FILE -m -np $SLURM_CPUS_PER_TASK /data/project/general/software/gothic/gothic8.3qa/bin/gothic_s.sh $INPUT_FILE -m -np $SLURM_CPUS_PER_TASK
gth_exit_code=$? gth_exit_code=$?
# Clean up data in /scratch
rm -rf /scratch/$USER/$SLURM_JOB_ID rm -rf /scratch/$USER/$SLURM_JOB_ID
# Return exit code from GOTHIC
exit $gth_exit_code exit $gth_exit_code
``` ```