<> ------ = 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. == Partition == 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/ == Example of batch script == {{{#!highlight bash #!/bin/bash #SBATCH -J test # Job name #SBATCH -o /work/<>/job.%j.out # Name of stdout output file (%j expands to jobId) #SBATCH -N 1 # Total number of nodes requested #SBATCH -n 16 # Total number of mpi tasks requested #SBATCH -t 01:30:00 # Run time (hh:mm:ss) - 1.5 hours # Load your software/command module load CMD # Run your command CMD [OPTIONS] ARGUMENTS }}}