Changes between Version 42 and Version 43 of greenplanet


Ignore:
Timestamp:
06/28/19 10:17:52 (5 years ago)
Author:
tsantos
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • greenplanet

    v42 v43  
    137137}}}
    138138
    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 informations 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.
     139where `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.
    140140
    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 informations Matlab gave you `$ISSM_DIR/execution/LAUNCHSTRING/JOBNAME.lock `, you copy the LAUNCHSTRING and you type in Matlab:
     141If 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:
    142142
    143143{{{
     
    148148== slurm ==
    149149
    150 A comparision of PBS to slurm commands can be found here: http://slurm.schedmd.com/rosetta.pdf
     150A comparison of PBS to slurm commands can be found here: http://slurm.schedmd.com/rosetta.pdf
    151151
    152152Useful commands:
     
    172172}}}
    173173
    174 Get information on partition (here c6145):
     174Get information on partition (here ilg2.3):
    175175{{{
    176 scontrol show partition=c6145
     176scontrol show partition=ilg2.3
    177177}}}
    178178
    179179Get sorted list of users on partition:
    180180{{{
    181 squeue  | grep -i c6145 | awk '{print $4}' | sort | uniq -c | sort -rn
     181squeue  | grep -i ilg2.3 | awk '{print $4}' | sort | uniq -c | sort -rn
    182182}}}