Changes between Version 42 and Version 43 of greenplanet
- Timestamp:
- 06/28/19 10:17:52 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
greenplanet
v42 v43 137 137 }}} 138 138 139 where JOBID is the ID of your job (indicated in the Matlab session). Matlab indicates too the directory of your job where you can find the files `JOBNAME.outlog` and `JOBNAME.errlog`. The outlog file contains the informationsthat would appear if you were running your job on your local machine and the errlog file contains the error information in case the job encounters an error.139 where `JOBID` is the ID of your job (indicated in the Matlab session). Matlab indicates too the directory of your job where you can find the files `JOBNAME.outlog` and `JOBNAME.errlog`. The outlog file contains the information that would appear if you were running your job on your local machine and the errlog file contains the error information in case the job encounters an error. 140 140 141 If you want to load results from the cluster manually (for example if you have an error due to an internet interruption), you find in the information s Matlab gave you `$ISSM_DIR/execution/LAUNCHSTRING/JOBNAME.lock`, you copy the LAUNCHSTRING and you type in Matlab:141 If you want to load results from the cluster manually (for example if you have an error due to an internet interruption), you find in the information Matlab gave you `$ISSM_DIR/execution/LAUNCHSTRING/JOBNAME.lock`, you copy the LAUNCHSTRING and you type in Matlab: 142 142 143 143 {{{ … … 148 148 == slurm == 149 149 150 A comparis ion of PBS to slurm commands can be found here: http://slurm.schedmd.com/rosetta.pdf150 A comparison of PBS to slurm commands can be found here: http://slurm.schedmd.com/rosetta.pdf 151 151 152 152 Useful commands: … … 172 172 }}} 173 173 174 Get information on partition (here c6145):174 Get information on partition (here ilg2.3): 175 175 {{{ 176 scontrol show partition= c6145176 scontrol show partition=ilg2.3 177 177 }}} 178 178 179 179 Get sorted list of users on partition: 180 180 {{{ 181 squeue | grep -i c6145| awk '{print $4}' | sort | uniq -c | sort -rn181 squeue | grep -i ilg2.3 | awk '{print $4}' | sort | uniq -c | sort -rn 182 182 }}}