Changes between Version 23 and Version 24 of greenplanet


Ignore:
Timestamp:
06/03/16 14:31:02 (9 years ago)
Author:
jbondzio
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • greenplanet

    v23 v24  
    109109== Running jobs on Greenplanet ==
    110110
    111 On Greenplanet, you can use up to 30 cores per node. The more nodes and the longer the requested time, the more you will have to wait in the queue. So choose your settings wisely:
     111On Greenplanet, you can use up to 30 cores per node. The more nodes and the longer the requested time, the more you will have to wait in the queue. Per job you can only request up to 125GB of RAM. So choose your settings wisely:
    112112
    113113 {{{
     
    142142}}}
    143143
     144== slurm ==
     145
    144146A comparision of PBS to slurm commands can be found here: http://slurm.schedmd.com/rosetta.pdf
     147
     148Useful commands:
     149
     150Graphical overview over greenplanet usage:
     151{{{
     152sview
     153}}}
     154
     155Get number of idle nodes:
     156{{{
     157sinfo --states=idle
     158}}}
     159
     160See jobs of <username>:
     161{{{
     162squeue -u <username>
     163}}}
     164
     165Get more information on jobs of user:
     166{{{
     167sacct -u <username> --format=User,JobID,account,Timelimit,elapsed,ReqMem,MaxRss,ExitCode
     168}}}
     169
     170Get information on partition (here c6145):
     171{{{
     172scontrol show partition=c6145
     173}}}
     174
     175Get sorted list of users on partition:
     176{{{
     177squeue  | grep -i c6145 | awk '{print $4}' | sort | uniq -c | sort -rn
     178}}}