Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

The maximum walltime on the shared partitions is currently 2 days.

Erweitern
titleExample Job for the shared partition

This is an example for a job script using 10 cores. As this is not a MPI job, srun/mpirun is not needed. This jobs memory usage should not exceed

Mb

Codeblock
#!/bin/bash
#SBATCH -p large96:shared
#SBATCH -t 1-0 #one day
#SBATCH -n 10
#SBATCH -N 1

python postprocessing.py


...

Most Compute node partitions have a maximal wall time of 12h. But large96:shared (and medium40, large40, large40:shared at Emmy only) offer 48h12 hours. Per default, 48 hours is offered only by shared partitions (plus medium40, large40 of Emmy). During normal office hours one can request the extension of the wall time of a any running job (mail with user and job ID to support[at]hlrn.de). Alternatively , on request () you can get special access - also per mail request - permanent access to run 48h jobs on all partitions of Lise and/or Emmy can be granted (by adding #SBATCH -q 48h). However, we recommend special permanent access to the 48h QoS (#SBATCH -q 48h) only on last resort, only: We we do not guaranty to refund your NPL on the 48h QoS if something goes wrongfails. Before, you should make sure that you exploited all possibilities to parallelize/speed up you code or make it restartable (see below).

...