Size: 691
Comment:
|
Size: 1447
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 8: | Line 8: |
Line 9: | Line 10: |
== Filesystems == Some but not all partitions are available to the compute nodes. Compute nodes will not be able to access any data from filesystems that are not listed here. /work /scratch /home/ == Slurm partitions == There are currently 2 partitions, '''normal''' and '''bigmem'''. The '''normal''' partition is the default partition if you submit a job without precising witch partition should be used you job will be placed in one of the normal partition. The normal partition has limited RAM of 250GB, in case you need more than that please use the '''bigmem''' partition. Use ''-p'' option can be used to specify the needed partition. |
|
Line 17: | Line 35: |
#SBATCH -p normal # Partition to use, another possible value is bigmem | |
Line 19: | Line 38: |
#SBATCH -t 01:30:00 # Run time (hh:mm:ss) - 1.5 hours | #SBATCH -t 01:30:00 # Run time ([d-]hh:mm:ss) - 1.5 hours |
Contents
Submitting jobs
Whatever you read here may need to be adjusted to fit your specific case.
Do not hesitate to ask for some help wen needed.
Filesystems
Some but not all partitions are available to the compute nodes. Compute nodes will not be able to access any data from filesystems that are not listed here. /work /scratch /home/
Slurm partitions
There are currently 2 partitions, normal and bigmem.
The normal partition is the default partition if you submit a job without precising witch partition should be used you job will be placed in one of the normal partition.
The normal partition has limited RAM of 250GB, in case you need more than that please use the bigmem partition.
Use -p option can be used to specify the needed partition.
Example of batch script
1 #!/bin/bash
2
3 #SBATCH -J test # Job name
4 #SBATCH -o /work/<<UID>>/job.%j.out # Name of stdout output file (%j expands to jobId)
5 #SBATCH -p normal # Partition to use, another possible value is bigmem
6 #SBATCH -N 1 # Total number of nodes requested
7 #SBATCH -n 16 # Total number of mpi tasks requested
8 #SBATCH -t 01:30:00 # Run time ([d-]hh:mm:ss) - 1.5 hours
9
10 # Load your software/command
11 module load CMD
12
13 # Run your command
14 CMD [OPTIONS] ARGUMENTS