Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
sacctmgr -s show user name=$USER format=user,account%100


You can change the default setting on your own:

...

  • sinfo shows existing queues
  • scontrol show job <JobID> shows information about specific job
  • sstat <JobID> shows resources used by a specific job
  • squeue shows information about queues and used nodes
  • smap curses-graphic of queues and nodes
  • sbatch <script> submits a batch job
  • salloc <resources> requests access to compute nodes for interactive use
  • scancel <JobID> cancels a batch job
  • srun <ressources> <executable> starts a (parallel) code
  • sshare and sprio give information on fair share value and job priority


Usage of local storage on compute nodes

The compute nodes all have a local storage that is mounted at /tmp, respectively. Additionally, the GPU nodes have storage mounted at /scratch. See System overview for the exact sizes.

The access to these local storage is much faster than to $WORK, $HOME or $SCRATCH, but each node only "sees" their own storage (and not the storage of the job's other nodes).

If your job



Example Scripts

Job arrays

...