Changes between Version 23 and Version 24 of greenplanet
- Timestamp:
- 06/03/16 14:31:02 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
greenplanet
v23 v24 109 109 == Running jobs on Greenplanet == 110 110 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: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. Per job you can only request up to 125GB of RAM. So choose your settings wisely: 112 112 113 113 {{{ … … 142 142 }}} 143 143 144 == slurm == 145 144 146 A comparision of PBS to slurm commands can be found here: http://slurm.schedmd.com/rosetta.pdf 147 148 Useful commands: 149 150 Graphical overview over greenplanet usage: 151 {{{ 152 sview 153 }}} 154 155 Get number of idle nodes: 156 {{{ 157 sinfo --states=idle 158 }}} 159 160 See jobs of <username>: 161 {{{ 162 squeue -u <username> 163 }}} 164 165 Get more information on jobs of user: 166 {{{ 167 sacct -u <username> --format=User,JobID,account,Timelimit,elapsed,ReqMem,MaxRss,ExitCode 168 }}} 169 170 Get information on partition (here c6145): 171 {{{ 172 scontrol show partition=c6145 173 }}} 174 175 Get sorted list of users on partition: 176 {{{ 177 squeue | grep -i c6145 | awk '{print $4}' | sort | uniq -c | sort -rn 178 }}}