This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
guides:slurm:basics [27.09.2019 10:21] Juha Kekäläinen |
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:// |
+ | |||
+ | {{ : | ||
+ | |||
### Example | ### Example | ||
+ | |||
+ | In this example we will run simple [MATLAB](https:// | ||
+ | |||
+ | |||
#### Example MATLAB code (matlab.m) | #### Example MATLAB code (matlab.m) | ||
``` | ``` | ||
Line 17: | Line 25: | ||
``` | ``` | ||
#### Example script (submit.sbatch) | #### Example script (submit.sbatch) | ||
+ | |||
+ | Here we have specified the [batch script](https:// | ||
+ | |||
``` | ``` | ||
#!/bin/bash | #!/bin/bash | ||
+ | #SBATCH --ntasks 1 # Number of task | ||
+ | #SBATCH --time 5 # Runtime in minutes. | ||
+ | #SBATCH --mem=2000 # | ||
+ | #SBATCH --partition small # Partition to submit | ||
- | module load matlab/R2018b | + | module load matlab/R2022b |
matlab -nodisplay < matlab.m # Execute the script | matlab -nodisplay < matlab.m # Execute the script | ||
Line 32: | Line 47: | ||
sbatch submit.sbatch | sbatch submit.sbatch | ||
``` | ``` | ||
+ | **[sbatch](https:// | ||
+ | |||
+ | Here is an another example on how to analyze variants. | ||
+ | |||
+ | ``` | ||
+ | #!/bin/bash | ||
+ | #SBATCH --ntasks 1 # Number of task | ||
+ | #SBATCH --time 00: | ||
+ | #SBATCH --mem 2000 # Reserve 2 GB RAM for the job | ||
+ | #SBATCH --partition small # Partition to submit | ||
+ | |||
+ | module load bcftools # load modules | ||
+ | |||
+ | # filter variants and calculate stats | ||
+ | bcftools filter --include' | ||
+ | ``` | ||
+ | |||
+ | Submit the job to computing queue with the **[sbatch](https:// | ||
+ | |||
+ | ``` | ||
+ | sbatch variants.sbatch | ||
+ | ``` | ||
+ | |||
+ | |||
+ | ### Slurm job queue | ||
+ | User can monitor the state of the job with the **[squeue](https:// | ||
+ | |||
+ | ``` | ||
+ | squeue -j < | ||
+ | ``` | ||
+ | |||
+ | ### Output of the job is available in local output file. | ||
+ | |||
+ | ``` | ||
+ | less slurm-< | ||
+ | ``` | ||
+ | |||
+ | ### Scontrol - View or modify Slurm configuration and state. | ||
+ | [Scontrol](https:// | ||
+ | |||
+ | #### List all compute nodes | ||
+ | ``` | ||
+ | scontrol show node | ||
+ | ``` | ||
+ | |||
+ | #### List all compute nodes | ||
+ | ``` | ||
+ | scontrol show node | ||
+ | ``` | ||
+ | |||
+ | #### List all queues/ | ||
+ | ``` | ||
+ | scontrol show partition | ||
+ | ``` | ||
+ | |||
+ | #### List information of the given jobid | ||
+ | ``` | ||
+ | scontrol show job < | ||
+ | ``` | ||
+ | |||
+ | |||
+ | ### Slurm job effiency report (seff) | ||
+ | Seff command will give the report of the completed job on how much resources it consumed. The reported information are CPU wall time, job runtime and memory usage. | ||
+ | |||
+ | ``` | ||
+ | seff < | ||
+ | ``` | ||
+ | |||