[ Skip to the content ]

Institute of Formal and Applied Linguistics Wiki


[ Back to the navigation ]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
slurm [2022/09/06 15:35]
vodrazka [Running jobs]
slurm [2022/09/06 16:06]
vodrazka [Batch mode]
Line 36: Line 36:
 #SBATCH --gres=gpu:                         # number of GPUs to request (default 0) #SBATCH --gres=gpu:                         # number of GPUs to request (default 0)
 #SBATCH --mem=10G                             # request 10 gigabytes memory (per node, default depends on node) #SBATCH --mem=10G                             # request 10 gigabytes memory (per node, default depends on node)
 +</code>
 +
 +If you need you can have slurm report to you:
 +
 +<code>
 +#SBATCH --mail-type=begin        # send email when job begins
 +#SBATCH --mail-type=end          # send email when job ends
 +#SBATCH --mail-type=fail         # send email if job fails
 +#SBATCH --mail-user=<YourUFALEmailAccount>
 </code> </code>
  
Line 76: Line 85:
 ==== Cluster info ==== ==== Cluster info ====
  
-The command ''sinfo'' can give you usefull information about nodes available in the cluster. Here is a short list of some usefull examples:+The command ''sinfo'' can give you useful information about nodes available in the cluster. Here is a short list of some examples: 
 + 
 +List available partitions(queues). The default partition is marked with ''*'': 
 +<code> 
 +sinfo 
 +</code> 
  
 List types of available GPUs: List types of available GPUs:

[ Back to the navigation ] [ Back to the content ]