Changes between Version 12 and Version 13 of ComputeResources/UMCGCluster
- Timestamp:
- Jan 9, 2013 7:03:50 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ComputeResources/UMCGCluster
v12 v13 54 54 ||gcc||production - default prio||none|| 55 55 ||gaf||production - high prio||only available to users from the gaf group|| 56 57 == Nodes == 58 59 It is not allowed to directly run tasks on the nodes. Always use the scheduler. If you want to test then use the test queues. 60 61 == Local data == 62 63 If for some reason it is necessary to use local disk space instead of the GPFS then you need to request local disk space like this: 64 {{{ 65 #PBS -l file=10mb 66 }}} 67 A private temp folder will be created. This folder will be removed after your script is finished. You can access this folder using this environment variable: $TMPDIR. Please make sure you do not use more disk space then requested. 68 69 File created on local disk without using this system can be deleted without notice. 70 56 71 === qsub options === 57 72 Jobs to be submitted via PBS qsub can specify a number of options to claim resources, report status, etc. These options can either be specified in the qsub command or in your job script. The latter is usually preferred as all information about the job including memory requirements, etc. stay with the script, below is an example header with some commonly used options, followed by a list of some commonly used flags and their meaning. … … 64 79 #PBS -q gcc 65 80 #PBS -l nodes=1:ppn=1 81 #PBS -l mem=10mb 66 82 #PBS -l mem=4gb 67 83 #PBS -l walltime=12:00:00