Changes between Version 12 and Version 13 of Public/User_Guide/Batch_system


Ignore:
Timestamp:
Nov 27, 2017, 3:02:56 PM (6 years ago)
Author:
Peter Niessen
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Public/User_Guide/Batch_system

    v12 v13  
    88
    99Slurm offers interactive and batch jobs (scripts submitted into the system). The relevant commands are {{{srun}}} and {{{sbatch}}}. The {{{srun}}} command can be used to spawn processes ('''please do not use mpiexec'''), both from the frontend and from within a batch script. You can also get a shell on a node to work locally there (e.g. to compile your application natively for a special platform.
     10
     11== Remark about modules ==
     12
     13Slurm passes the environment from your job submission session directly to the execution environment. The setup as used with torque therefore doesn't work anymore. Please use
     14
     15{{{
     16# workaround for missing module file
     17. /etc/profile.d/modules.sh
     18
     19module purge
     20module load  intel/16.3 parastation/intel1603-e10-5.1.9-1_11_gc11866c_e10 extoll
     21}}}
     22
     23instead.
    1024
    1125== An introductory example ==