This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
guides:slurm:basics [18.11.2021 11:19] Administrator |
guides:slurm:basics [18.10.2024 14:09] (current) Administrator |
||
---|---|---|---|
Line 8: | Line 8: | ||
* Optional plugins can be used for accounting, advanced reservation, | * Optional plugins can be used for accounting, advanced reservation, | ||
- | Bioinformatics Center uses unmodified version of Slurm on sampo.uef.fi computing cluster. This guarantees that the most of the tutorials and guides found from the Internet are applicable as-is. The most obvious starting place to search for usage information is documentation section of the Slurm own website [[https:// | + | Bioinformatics Center uses Slurm on kudos.uef.fi computing cluster. This guarantees that the most of the tutorials and guides found from the Internet are applicable as-is. The most obvious starting place to search for usage information is documentation section of the Slurm own website [[https:// |
{{ : | {{ : | ||
Line 34: | Line 34: | ||
#SBATCH --time 5 # Runtime in minutes. | #SBATCH --time 5 # Runtime in minutes. | ||
#SBATCH --mem=2000 # | #SBATCH --mem=2000 # | ||
- | #SBATCH --partition | + | #SBATCH --partition |
- | module load matlab/R2018b | + | module load matlab/R2022b |
matlab -nodisplay < matlab.m # Execute the script | matlab -nodisplay < matlab.m # Execute the script | ||
Line 56: | Line 56: | ||
#SBATCH --time 00: | #SBATCH --time 00: | ||
#SBATCH --mem 2000 # Reserve 2 GB RAM for the job | #SBATCH --mem 2000 # Reserve 2 GB RAM for the job | ||
- | #SBATCH --partition | + | #SBATCH --partition |
- | #SBATCH --auks=yes | + | |
module load bcftools # load modules | module load bcftools # load modules | ||
Line 106: | Line 105: | ||
``` | ``` | ||
scontrol show job < | scontrol show job < | ||
- | ``` | ||
- | |||
- | #### Extend runtime of given jobid | ||
- | |||
- | ``` | ||
- | scontrol update jobid=< | ||
``` | ``` | ||