Difference between revisions of "Running Jobs on the teaching cluster"

From Research Computing Center Wiki
Jump to navigation Jump to search
Line 151: Line 151:
 
You can then load the needed modules. For example, if you are running an R program, then include the line
 
You can then load the needed modules. For example, if you are running an R program, then include the line
 
<pre class="gscript">
 
<pre class="gscript">
ml R/3.4.4-foss-2016b-X11-20160819-GACRC
+
module load R/3.4.4-foss-2016b-X11-20160819-GACRC
 
</pre>
 
</pre>
  
Line 209: Line 209:
 
===Sample job submission scripts===
 
===Sample job submission scripts===
  
====OpenMPI====
+
====Serial (single-processor) Job====
  
Sample job submission script (sub.sh) to run an OpenMPI application:
+
Sample job submission script (sub.sh) to run an R program called add.R using a single core:
  
 
<pre class="gscript">
 
<pre class="gscript">
#PBS -S /bin/bash
+
#!/bin/bash
#PBS -q batch
+
#SBATCH --job-name=testserial        # Job name
#PBS -N testjob
+
#SBATCH --partition=batch             # Partition (queue) name
#PBS -l nodes=2:ppn=48:AMD
+
#SBATCH --mail-type=END,FAIL          # Mail events (NONE, BEGIN, END, FAIL, ALL)
#PBS -l walltime=48:00:00
+
#SBATCH --mail-user=username@uga.edu  # Where to send mail
#PBS -l mem=2gb
+
#SBATCH --ntasks=1                    # Run on a single CPU
#PBS -M username@uga.edu
+
#SBATCH --mem=1gb                    # Job memory request
#PBS -m abe
+
#SBATCH --time=02:00:00               # Time limit hrs:min:sec
 +
#SBATCH --output=testserial_%j.log    # Standard output and error log
  
cd $PBS_O_WORKDIR
+
cd $SLURM_SUBMIT_DIR
  
ml OpenMPI/2.1.1-GCC-6.4.0-2.28
+
module load R/3.4.4-foss-2016b-X11-20160819-GACRC
 
 
echo
 
echo "Job ID: $PBS_JOBID"
 
echo "Queue:  $PBS_QUEUE"
 
echo "Cores:  $PBS_NP"
 
echo "Nodes:  $(cat $PBS_NODEFILE | sort -u | tr '\n' ' ')"
 
echo "mpirun: $(which mpirun)"
 
echo
 
 
 
mpirun ./a.out > outputfile
 
  
 +
R CMD BATCH add.R
 
</pre>
 
</pre>
  
 +
====MPI Job====
  
====OpenMP====
+
Sample job submission script (sub.sh) to run an OpenMPI application. In this example the job requests 16 cores and further specifies that these 16 cores need to be divided equally on 2 nodes (8 cores per node) and the binary is called mympi.exe:
 
 
Sample job submission script (sub.sh) to run a program that uses OpenMP with 10 threads:
 
  
 
<pre class="gscript">
 
<pre class="gscript">
#PBS -S /bin/bash
+
#!/bin/bash
#PBS -q batch
+
#SBATCH --job-name=mpitest      # Job name
#PBS -N testjob
+
#SBATCH --partition=batch             # Partition (queue) name
#PBS -l nodes=1:ppn=10
+
#SBATCH --mail-type=END,FAIL        # Mail events (NONE, BEGIN, END, FAIL, ALL)
#PBS -l walltime=48:00:00
+
#SBATCH --mail-user=username@uga.edu    # Where to send mail
#PBS -l mem=30gb
+
#SBATCH --ntasks=16                  # Number of MPI ranks
#PBS -M username@uga.edu
+
#SBATCH --cpus-per-task=1           # Number of cores per MPI rank
#PBS -m abe
+
#SBATCH --nodes=2                    # Number of nodes
 
+
#SBATCH --ntasks-per-node=8        # How many tasks on each node
cd $PBS_O_WORKDIR
+
#SBATCH --mem-per-cpu=600mb          # Memory per processor
 +
#SBATCH --time=02:00:00              # Time limit hrs:min:sec
 +
#SBATCH --output=mpitest_%j.log    # Standard output and error log
  
export OMP_NUM_THREADS=10
+
cd $SLURM_SUBMIT_DIR
  
echo
+
module load OpenMPI/1.10.3-GCC-5.4.0-2.26
echo "Job ID: $PBS_JOBID"
 
echo "Queue:  $PBS_QUEUE"
 
echo "Cores:  $PBS_NP"
 
echo "Nodes:  $(cat $PBS_NODEFILE | sort -u | tr '\n' ' ')"
 
echo
 
  
time ./a.out > outputfile
+
mpirun ./mympi.exe
  
 
</pre>
 
</pre>
  
====A high memory job====
 
  
Sample job submission script (sub.sh) to run an application that needs to use an Intel HIGHMEM node:
+
====OpenMP (Multi-Thread) Job====
 +
 
 +
Sample job submission script (sub.sh) to run a program that uses OpenMP with 6 threads. Please set '''--ntasks=1''' and set '''--cpus-per-task''' to the number of threads you wish to use. The name of the binary in this example is a.out.
  
 
<pre class="gscript">
 
<pre class="gscript">
#PBS -S /bin/bash
+
#!/bin/bash
#PBS -q highmem_q
+
#SBATCH --job-name=mctest      # Job name
#PBS -N testjob
+
#SBATCH --partition=batch            # Partition (queue) name
#PBS -l nodes=1:ppn=12:Intel
+
#SBATCH --mail-type=END,FAIL        # Mail events (NONE, BEGIN, END, FAIL, ALL)
#PBS -l walltime=48:00:00
+
#SBATCH --mail-user=username@uga.edu    # Where to send mail
#PBS -l mem=400gb
+
#SBATCH --ntasks=1                   # Run a single task
#PBS -M username@uga.edu
+
#SBATCH --cpus-per-task=6            # Number of CPU cores per task
#PBS -m abe
+
#SBATCH --mem=4gb                    # Job memory request
 +
#SBATCH --time=02:00:00             # Time limit hrs:min:sec
 +
#SBATCH --output=mctest_%j.log    # Standard output and error log
  
cd $PBS_O_WORKDIR
+
cd $SLURM_SUBMIT_DIR
  
ml Velvet
+
export OMP_NUM_THREADS=6 
  
velvetg [options] > outputfile
+
module load foss/2016b  # load the appropriate module file, e.g. foss/2016b
</pre>
 
  
If the application can run either on an Intel or an AMD HIGHMEM node:
+
time ./a.out
  
<pre class="gscript">
 
#PBS -S /bin/bash
 
#PBS -q highmem_q
 
#PBS -N testjob
 
#PBS -l nodes=1:ppn=12
 
#PBS -l walltime=48:00:00
 
#PBS -l mem=400gb
 
#PBS -M username@uga.edu
 
#PBS -m abe
 
 
cd $PBS_O_WORKDIR
 
 
ml Velvet
 
 
velvetg [options] > outputfile
 
 
</pre>
 
</pre>
  
====GPU/CUDA====
+
====A high memory job====
  
Sample job submission script (sub.sh) to run a GPU-enabled (e.g. CUDA) application:
+
Sample job submission script (sub.sh) to run a velvet application that needs to use 50GB of memory and 4 threads:
  
 
<pre class="gscript">
 
<pre class="gscript">
#PBS -S /bin/bash
+
#!/bin/bash
#PBS -q gpu_q
+
#SBATCH --job-name=highmemtest      # Job name
#PBS -N testjob
+
#SBATCH --partition=highmem            # Partition (queue) name
#PBS -l nodes=1:ppn=4:gpus=1
+
#SBATCH --mail-type=END,FAIL        # Mail events (NONE, BEGIN, END, FAIL, ALL)
#PBS -l walltime=48:00:00
+
#SBATCH --mail-user=username@uga.edu    # Where to send mail
#PBS -l mem=2gb
+
#SBATCH --ntasks=1                   # Run a single task
#PBS -M username@uga.edu
+
#SBATCH --cpus-per-task=4         # Number of CPU cores per task
#PBS -m abe
+
#SBATCH --mem=50gb                    # Job memory request
 +
#SBATCH --time=02:00:00             # Time limit hrs:min:sec
 +
#SBATCH --output=highmemtest_%j.log    # Standard output and error log
  
cd $PBS_O_WORKDIR
+
cd $SLURM_SUBMIT_DIR
  
ml CUDA/9.0.176
+
export OMP_NUM_THREADS=4
  
echo
+
module load Velvet
echo "Job ID: $PBS_JOBID"
 
echo "Queue:  $PBS_QUEUE"
 
echo "Cores:  $PBS_NP"
 
echo "Nodes:  $(cat $PBS_NODEFILE | sort -u | tr '\n' ' ')"
 
echo
 
  
time ./a.out > outputfile
+
velvetg [options]
  
 
</pre>
 
</pre>
  
'''Note:''' Please note the additional '''gpus=1''' option in the header line. This option should be used to request the number of GPU cards to be used (e.g. to request 2 GPU cards, use gpus=2).
 
  
The GPU devices allocated to a job are listed in a file whose name is stored in the queueing system environment variable PBS_GPUFILE. You can print what this file name is with the command (add it to your job submission file):
+
====Hybrid MPI/shared-memory using OpenMPI====
<pre class="gscript">
 
echo $PBS_GPUFILE
 
</pre>
 
  
To get a list of the numbers of the GPU devices allocated to your job, separated by a blank space, use the command:
+
Sample job submission script (sub.sh) to run a parallel job that uses 4 MPI processes with OpenMPI and each MPI process runs with 3 threads:
<pre class="gscript">
 
CUDADEV=$(cat $PBS_GPUFILE | rev | cut -d"u" -f1)
 
  
echo "List of devices allocated to this job:"
 
 
echo $CUDADEV
 
</pre>
 
 
To remove the blank space between two device numbers in the CUDADEV variable above, use the command:
 
 
<pre class="gscript">
 
<pre class="gscript">
CUDADEV=$(cat $PBS_GPUFILE | rev | cut -d"u" -f1)
+
#!/bin/bash
 +
#SBATCH --job-name=hybridtest
 +
#SBATCH --partition=batch            # Partition (queue) name
 +
#SBATCH --mail-type=END,FAIL  # Mail events (NONE, BEGIN, END, FAIL, ALL)
 +
#SBATCH --mail-user=username@uga.edu # Where to send mail
 +
#SBATCH --nodes=2              # Number of nodes
 +
#SBATCH --ntasks=4            # Number of MPI ranks
 +
#SBATCH --ntasks-per-node=2    # Number of MPI ranks per node
 +
#SBATCH --cpus-per-task=3      # Number of OpenMP threads for each MPI process/rank
 +
#SBATCH --mem-per-cpu=2000mb  # Per processor memory request
 +
#SBATCH --time=2-00:00:00      # Walltime in hh:mm:ss or d-hh:mm:ss (2 days in the example)
 +
#SBATCH --output=hybridtest_%j.out
  
GPULIST=$(echo $CUDADEV | sed 's/ //')
+
cd $SLURM_SUBMIT_DIR
 +
 +
export OMP_NUM_THREADS=$SLURM_CPUS_PER_TASK
  
echo "List of devices allocated to this job (no blank spaces between devices):"
+
mpirun ./myhybridprog.exe
  
echo $GPULIST
 
 
</pre>
 
</pre>
  
Some GPU/CUDA applications require that a list of the GPU devices be given as an argument to the application. If the application needs a blank space separated device number list, use the $CUDADEV variable as an argument. If no blank space is allowed in the list, you can use the $GPULIST variable as an argument to the application.
 
  
====Hybrid MPI/shared-memory using OpenMPI====
+
====Array job====
 
 
Sample job submission script (sub.sh) to run a parallel job that uses 3 MPI processes with OpenMPI and each MPI process runs with 12 threads:
 
  
 +
Sample job submission script (sub.sh) to submit an array job with 10 elements. In this example, each array job element will run the a.out binary using an input file called input_0, input_1, ..., input_9.
 
<pre class="gscript">
 
<pre class="gscript">
#PBS -S /bin/bash
+
#!/bin/bash
#PBS -j oe
+
#SBATCH --job-name=arrayjobtest  # Job name
#PBS -q batch
+
#SBATCH --partition=batch             # Partition (queue) name
#PBS -N testhybrid
+
#SBATCH --ntasks=1                  # Run a single task
#PBS -l nodes=3:ppn=12:AMD
+
#SBATCH --mem=1gb                  # Job Memory
#PBS -l mem=60g
+
#SBATCH --time=10:00:00             # Time limit hrs:min:sec
#PBS -l walltime=4:00:00
+
#SBATCH --output=array_%A-%a.log    # Standard output and error log
#PBS -M username@uga.edu
+
#SBATCH --array=0-9                # Array range
#PBS -m abe
 
 
 
ml OpenMPI/2.1.1-GCC-6.4.0-2.28
 
  
echo
+
cd $SLURM_SUBMIT_DIR
echo "Job ID: $PBS_JOBID"
 
echo "Queue:  $PBS_QUEUE"
 
echo "Cores:  $PBS_NP"
 
echo "Nodes:  $(cat $PBS_NODEFILE | sort -u | tr '\n' ' ')"
 
echo "mpirun: $(which mpirun)"
 
echo
 
  
cd $PBS_O_WORKDIR
+
module load foss/2016b # load any needed module files, e.g. foss/2016b
  
export OMP_NUM_THREADS=12
+
time ./a.out < input_$SLURM_ARRAY_TASK_ID
 
 
perl /usr/local/bin/makehostlist.pl $PBS_NODEFILE $PBS_NUM_PPN $PBS_JOBID
 
 
 
mpirun -machinefile  host.$PBS_JOBID.list ./a.out
 
  
 
</pre>
 
</pre>
  
 +
====GPU/CUDA====
  
====Running an array job====
+
To be added.
 
 
Sample job submission script (sub.sh) to submit an array job with 10 elements. In this example, each array job element will run the a.out binary using an input file called input_0, input_1, ..., input_9.
 
<pre class="gscript">
 
#PBS -S /bin/bash
 
#PBS -j oe
 
#PBS -q batch
 
#PBS -N myarrayjob
 
#PBS -l nodes=1:ppn=1
 
#PBS -l walltime=4:00:00
 
#PBS -t 0-9
 
 
 
cd $PBS_O_WORKDIR
 
 
 
time ./a.out < input_$PBS_ARRAYID
 
 
 
</pre>
 
  
 
----
 
----
Line 428: Line 370:
 
With the resource requirements specified in the job submission script (sub.sh), submit your job with
 
With the resource requirements specified in the job submission script (sub.sh), submit your job with
 
<pre class="gcommand">
 
<pre class="gcommand">
qsub scriptname
+
sbatch <scriptname>
 
</pre>
 
</pre>
 
For example
 
For example
 
<pre class="gcommand">
 
<pre class="gcommand">
qsub sub.sh
+
sbatch sub.sh
 
</pre>
 
</pre>
Once the job is submitted, the Job ID of the job (e.g. 123456.pbs.scm) will be printed on the screen.
+
Once the job is submitted, the Job ID of the job (e.g. 12345) will be printed on the screen.
  
  
Line 441: Line 383:
  
 
===Discovering if the queue is busy===
 
===Discovering if the queue is busy===
To check if the queue is busy or which node is free to accept the job, following command can helps:
+
To be added.
<pre class="gscript">
 
mdiag -n -v
 
</pre>
 
 
 
For example, check if the highmem_q is busy:
 
 
 
<pre class="gscript">
 
mdiag -n -v | grep highmem_q
 
</pre>
 
  
 
----
 
----
Line 461: Line 394:
 
qlogin
 
qlogin
 
</pre>
 
</pre>
This command will start an interactive session with one core on a node with feature inter, using the s_interq queue,
+
This command will start an interactive session with one core on one of the interactive nodes.
and with a walltime limit of 12h. The interactive session will open on either an AMD node or an Intel node.
 
 
 
 
The '''qlogin''' command is an alias for  
 
The '''qlogin''' command is an alias for  
 
<pre class="gcommand">
 
<pre class="gcommand">
qsub -I -q s_interq -l walltime=12:00:00 -l nodes=1:ppn=1 -l mem=2gb
+
 
 
</pre>
 
</pre>
 
so it can be used to start an interactive session on a node with feature inter  
 
so it can be used to start an interactive session on a node with feature inter  
 
and with a walltime of 12h.
 
and with a walltime of 12h.
  
If you wish to start an interactive session on an AMD node, you can use the command
 
<pre class="gcommand">
 
qlogin_amd
 
</pre>
 
  
If you wish to start an interactive session on an Intel node, you can use the command
 
<pre class="gcommand">
 
qlogin_intel
 
</pre>
 
 
 
If you would like to start an interactive session with a different walltime limit or with more cores (e.g. to test a small parallel job),
 
please use the command below and select appropriate values for the walltime and the ppn value. For example, this command:
 
<pre class="gcommand">
 
qsub -I -q s_interq -l walltime=02:00:00 -l nodes=1:ppn=4:inter -l mem=2gb
 
</pre>
 
will start an interactive session with 4 cores, a walltime limit of 2h (choose appropriately), using the s_interq queue, and on
 
a node with feature inter.
 
 
To start an interactive on your lab's buyin node, please select the queue that targets your lab's node(s). For example:
 
<pre class="gcommand">
 
qsub -I -l walltime=12:00:00 -l nodes=1:ppn=1 -l mem=2gb -q abclab_q
 
</pre>
 
 
A typical use of an interactive session is for code compilation, so the
 
binaries generated are optimized for the compute node type (e.g. inter which is
 
identical to nodes with the AMD feature).
 
  
 
----
 
----
Line 504: Line 409:
 
===How to run an interactive job with Graphical User Interface capabilities===
 
===How to run an interactive job with Graphical User Interface capabilities===
  
 +
To be added.
 
<!--
 
<!--
 
'''NOTE: X-forwarding is not working on Sapelo2 yet, sorry for the inconvenience'''
 
'''NOTE: X-forwarding is not working on Sapelo2 yet, sorry for the inconvenience'''
-->
 
  
  
Line 533: Line 438:
 
desktop).
 
desktop).
  
 
+
-->
 
----
 
----
 
[[#top|Back to Top]]
 
[[#top|Back to Top]]
  
 +
<!--
 
===How to run a singularity application===
 
===How to run a singularity application===
  
Line 672: Line 578:
  
 
In the example above, the total amount of /lscratch allocated to this job is 5000000 * 4 = 20000000 = 20GB.
 
In the example above, the total amount of /lscratch allocated to this job is 5000000 * 4 = 20000000 = 20GB.
 +
 +
-->
  
 
----
 
----
Line 680: Line 588:
 
To list all running and pending jobs (by all users), use the command
 
To list all running and pending jobs (by all users), use the command
 
<pre class="gcommand">
 
<pre class="gcommand">
qstat
+
squeue
 
</pre>
 
</pre>
  
To list all your running and pending jobs, use the command
 
<pre class="gcommand">
 
qstat_me
 
</pre>
 
  
or
+
For detailed information on how to monitor your jobs, please see [[Monitoring Jobs on the teaching cluster]].
 
 
<pre class="gcommand">
 
qstat -u MyID
 
</pre>
 
where MyID needs to be replaced by your UGA MyID.
 
 
 
To list all array elements of array jobs, add the '''-t''' option to qstat:
 
<pre class="gcommand">
 
qstat -u MyID -t
 
</pre>
 
 
 
For detailed information on how to monitor your jobs, please see [[Monitoring Jobs on Sapelo2]].
 
  
 
----
 
----
Line 709: Line 601:
 
To delete one of your running or pending job, use the command
 
To delete one of your running or pending job, use the command
 
<pre class="gcommand">
 
<pre class="gcommand">
qdel jobid
+
scancel jobid
 
</pre>
 
</pre>
For example, to delete a job with Job ID 123456.pbs.scm use
+
For example, to delete a job with Job ID 12345 use
 
<pre class="gcommand">
 
<pre class="gcommand">
qdel 123456
+
scancel 12345
</pre>
 
 
 
===Standard error and standard output files of a job===
 
 
 
By default, the standard output and the standard error of the job will be written into files called '''jobname.oJobid''' and '''jobname.eJobid''', respectively, where '''jobname''' is the name of the job and '''Jobid''' is the job id number. If you want the standard error to be written into the standard output file, please add the header line
 
<pre class="gscript">
 
#PBS -j oe
 
</pre>
 
 
 
These files will be written to disk (to your working directory) while the job is running. However, we still encourage users to write all standard output of the application into a separate file. If the application writes to the standard output, you could redirect the stdout and stderr of an application to a file, e.g., output.txt:
 
<pre class="gscript">
 
./application >output.txt 2>&1
 
 
</pre>
 
</pre>
where the name ''output.txt'' can be replaced by a file name of choice.
 
 
  
 
----
 
----
Line 735: Line 613:
 
===How to check resource utilization of a finished job===
 
===How to check resource utilization of a finished job===
  
 +
To be added.
 +
<!--
 
'''1.''' You can request than an email be sent to you when the job finishes, by adding these two header lines to the job submission script:
 
'''1.''' You can request than an email be sent to you when the job finishes, by adding these two header lines to the job submission script:
 
<pre class="gscript">
 
<pre class="gscript">
#PBS -M username@uga.edu  
+
#SBATCH --mail-type=END,FAIL 
#PBS -m ae
+
#SBATCH --mail-user=username@uga.edu
 
</pre>
 
</pre>
 
where ''username@uga.edu'' should be replaced by your email address (not necessarily a UGAMail address).  
 
where ''username@uga.edu'' should be replaced by your email address (not necessarily a UGAMail address).  
Line 750: Line 630:
 
to check on the resource utilization (such as wall clock time, amount of memory, etc).
 
to check on the resource utilization (such as wall clock time, amount of memory, etc).
  
<!--
+
 
 
'''3.''' Jobs that completed over one hour ago, but no longer than 7 days ago, you can use the command  
 
'''3.''' Jobs that completed over one hour ago, but no longer than 7 days ago, you can use the command  
 
<pre class="gcommand">
 
<pre class="gcommand">

Revision as of 17:26, 2 August 2018


Using the Queueing System

The login node for the teaching cluster should be used for text editing, and job submissions. No jobs should be run directly on the login node. Processes that use too much CPU or RAM on the login node may be terminated by GACRC staff, or automatically, in order to keep the cluster running properly. Jobs should be run using the Slurm queueing system. The queueing system should be used to run both interactive and batch jobs.


Back to Top

Queues defined on the teaching cluster

There are different queues defined on the teaching cluster. The SLURM queueing system refers to queues as partition. Users are required to specify, in the job submission script or as job submission command line arguments, the queue and the resources needed by the job in order for it to be assigned to compute node(s) that have enough available resources (such as number of cores, amount of memory, GPU cards, etc).

The table below summarizes the partitions (queues) defined and the compute nodes that they target:

Queue Name Node Type Node Number Description Notes
batch Intel 37 12-core, 48GB RAM, Intel Xeon Regular nodes.
batch Intel 2 8-core, 48GB RAM, Intel Xeon Regular nodes.
highmem AMD 2 48-core, 128GB RAM, AMD Opteron For high memory jobs.
highmem Intel 3 8-core, 192GB RAM, Intel Xeon For high memory jobs.
gpu GPU, M2070 1 12-core, 48GB RAM, Intel Xeon, 8 NVIDIA M2070 GPUs For GPU-enabled jobs.
interq AMD 3 32-core, 64GB RAM, AMD Opteron For interactive jobs.

You can check all partitions (queues) defined in the cluster with the command

sinfo

Back to Top

Job submission Scripts

Users are required to specify the number of cores, the amount of memory, the queue name, and the maximum wallclock time needed by the job.

Header lines

Basic job submission script

At a minimum, the job submission script needs to have the following header lines:

#!/bin/bash
#SBATCH --partition=batch
#SBATCH --job-name=test
#SBATCH --ntasks=2
#SBATCH --time=2:00:00
#SBATCH --mem=2gb

Commands to run your application should be added after these header lines.

Header lines explained

  • #!/bin/bash : used to specify using /bin/bash shell
  • #SBATCH --partition=batch : used to specify the partition (queue) name, e.g. batch
  • #SBATCH --job-name=test : used to specify the name of the job, e.g. test
  • #SBATCH --ntasks=2 : used to specify the number of tasks (e.g. 2).
  • #SBATCH --time=2:00:00# : used to specify the maximum allowed wall clock time in dd:hh:mm:ss format for the job (e.g 2h).
  • #SBATCH --mem=2gb : used to specify the maximum memory allowed for the job (e.g. 2GB)


Below are some of the most commonly used queueing system options to configure the job.

Options to request resources for the job

  • -t, --time=time
   Set a limit on the total run time. Acceptable formats include  "minutes", "minutes:seconds",  "hours:minutes:seconds",  "days-hours", "days-hours:minutes" and "days-hours:minutes:seconds"
  • --mem=MB
   Maximum memory per node the job will need in MegaBytes
  • --mem-per-cpu=MB
   Memory required per allocated CPU in MegaBytes
  • -N, --nodes=num
   Number of nodes are required. Default is 1 node
  • -n, --ntasks=num
   Maximum number tasks will be launched. Default is one task per node
  • --ntasks-per-node=ntasks
   Request that ntasks be invoked on each node
  • -c, --cpus-per-task=ncpus
   Require ncpus number of CPU cores per task. Without this option, allocate one core per task

Please try to request resources for your job as accurately as possible, because this allows your job to be dispatched to run at the earliest opportunity and it helps the system allocate resources efficiently to start as many jobs as possible, benefiting all users.


Options to manage job notification and output

  • -J, --job-name jobname
   Give the job a name. The default is the filename of the job script. Within the job, $SBATCH_JOB_NAME expands to the job name
  • -o, --output=path/for/stdout
   Send stdout to path/for/stdout. The default filename is slurm-${SLURM_JOB_ID}.out, e.g. slurm-12345.out, in the directory from which the job was submitted 
  • -e, --error=path/for/stderr
   Send stderr to path/for/stderr.
  • --mail-user=yourUGAMyID@uga.edu
   Send email notification to the address you specified when certain events occur.
  • --mail-type=type
   The value oftype can be set to NONE, BEGIN, END, FAIL, ALL.

Options to set Array Jobs

If you wish to run an application binary or script using e.g. different input files, then you might find it convenient to use an array job. To create an array job with e.g. 10 elements, use

#SBATCH -t 0-9

or

#SBATCH --array=0-9

The ID of each element in an array job is stored in the variable SLURM_ARRAY_TASK_ID. The variable SLURM_ARRAY_JOB_ID will be expanded into the jobid of the array job. Each array job element runs as an independent job, so multiple array elements can run concurrently, if resources are available.

Option to set job dependency

You can set job dependency with the option -d or --dependency=dependency-list. For example, if you want to specify that one job only starts after job with jobid 1234 finishes, you can add the following header line in the job submission script of the job:

#SBATCH --dependency=afterok:1234

Having this header line in the job submission script will ensure that the job is only dispatched to run after job 1234 has completed successfully.

Other content of the script

Following the header lines, users can include commands to change to the working directory, to load the modules needed to run the application, and to invoke the application. For example, to use the directory from which the job is submitted as the working directory (where to find input files or binaries), add the line

cd $SLURM_SUBMIT_DIR

You can then load the needed modules. For example, if you are running an R program, then include the line

module load R/3.4.4-foss-2016b-X11-20160819-GACRC

Then invoke your application. For example, if you are running an R program called add.R which is in your job submission directory, use

R CMD BATCH add.R


Environment Variables exported by batch jobs

When a batch job is started, a number of variables are introduced into the job's environment that can be used by the batch script in making decisions, creating output files, and so forth. Some of these variables are listed in the following table:

Variable Description
SLURM_ARRAY_JOB_ID Job id of an array job
SLURM_ARRAY_TASK_ID Value of job array index for this job
SLURM_CPUS_ON_NODE Number of CPUS on the allocated node.
SLURM_CPUS_PER_TASK Number of cpus requested per task. Only set if the --cpus-per-task option is specified.
SLURM_JOB_ID Unique pbs job id
SLURM_JOB_NAME User specified jobname
SLURM_JOB_CPUS_PER_NODE Count of processors available to the job on this node.
SLURM_JOB_NAME Name of the job.
SLURM_JOB_NODELIST List of nodes allocated to the job.
SLURM_JOB_NUM_NODES Total number of nodes in the job's resource allocation.
SLURM_JOB_PARTITION Name of the partition (i.e. queue) in which the job is running.
SLURM_NTASKS Same as -n, --ntasks
SLURM_NTASKS_PER_NODE Number of tasks requested per node. Only set if the --ntasks-per-node option is specified.
SLURM_SUBMIT_DIR The directory from which sbatch was invoked.
SLURM_TASKS_PER_NODE Number of tasks to be initiated on each node.



Back to Top

Sample job submission scripts

Serial (single-processor) Job

Sample job submission script (sub.sh) to run an R program called add.R using a single core:

#!/bin/bash
#SBATCH --job-name=testserial         # Job name
#SBATCH --partition=batch             # Partition (queue) name
#SBATCH --mail-type=END,FAIL          # Mail events (NONE, BEGIN, END, FAIL, ALL)
#SBATCH --mail-user=username@uga.edu  # Where to send mail	
#SBATCH --ntasks=1                    # Run on a single CPU
#SBATCH --mem=1gb                     # Job memory request
#SBATCH --time=02:00:00               # Time limit hrs:min:sec
#SBATCH --output=testserial_%j.log    # Standard output and error log

cd $SLURM_SUBMIT_DIR

module load R/3.4.4-foss-2016b-X11-20160819-GACRC

R CMD BATCH add.R

MPI Job

Sample job submission script (sub.sh) to run an OpenMPI application. In this example the job requests 16 cores and further specifies that these 16 cores need to be divided equally on 2 nodes (8 cores per node) and the binary is called mympi.exe:

#!/bin/bash
#SBATCH --job-name=mpitest      # Job name
#SBATCH --partition=batch             # Partition (queue) name
#SBATCH --mail-type=END,FAIL         # Mail events (NONE, BEGIN, END, FAIL, ALL)
#SBATCH --mail-user=username@uga.edu    # Where to send mail	
#SBATCH --ntasks=16                  # Number of MPI ranks
#SBATCH --cpus-per-task=1            # Number of cores per MPI rank 
#SBATCH --nodes=2                    # Number of nodes
#SBATCH --ntasks-per-node=8         # How many tasks on each node
#SBATCH --mem-per-cpu=600mb          # Memory per processor
#SBATCH --time=02:00:00              # Time limit hrs:min:sec
#SBATCH --output=mpitest_%j.log     # Standard output and error log

cd $SLURM_SUBMIT_DIR

module load OpenMPI/1.10.3-GCC-5.4.0-2.26

mpirun ./mympi.exe


OpenMP (Multi-Thread) Job

Sample job submission script (sub.sh) to run a program that uses OpenMP with 6 threads. Please set --ntasks=1 and set --cpus-per-task to the number of threads you wish to use. The name of the binary in this example is a.out.

#!/bin/bash
#SBATCH --job-name=mctest      # Job name
#SBATCH --partition=batch             # Partition (queue) name
#SBATCH --mail-type=END,FAIL         # Mail events (NONE, BEGIN, END, FAIL, ALL)
#SBATCH --mail-user=username@uga.edu    # Where to send mail	
#SBATCH --ntasks=1                   # Run a single task	
#SBATCH --cpus-per-task=6            # Number of CPU cores per task
#SBATCH --mem=4gb                    # Job memory request
#SBATCH --time=02:00:00              # Time limit hrs:min:sec
#SBATCH --output=mctest_%j.log     # Standard output and error log

cd $SLURM_SUBMIT_DIR

export OMP_NUM_THREADS=6  

module load foss/2016b  # load the appropriate module file, e.g. foss/2016b

time ./a.out

A high memory job

Sample job submission script (sub.sh) to run a velvet application that needs to use 50GB of memory and 4 threads:

#!/bin/bash
#SBATCH --job-name=highmemtest      # Job name
#SBATCH --partition=highmem            # Partition (queue) name
#SBATCH --mail-type=END,FAIL         # Mail events (NONE, BEGIN, END, FAIL, ALL)
#SBATCH --mail-user=username@uga.edu    # Where to send mail	
#SBATCH --ntasks=1                   # Run a single task	
#SBATCH --cpus-per-task=4          # Number of CPU cores per task
#SBATCH --mem=50gb                    # Job memory request
#SBATCH --time=02:00:00              # Time limit hrs:min:sec
#SBATCH --output=highmemtest_%j.log     # Standard output and error log

cd $SLURM_SUBMIT_DIR

export OMP_NUM_THREADS=4

module load Velvet

velvetg [options]


Hybrid MPI/shared-memory using OpenMPI

Sample job submission script (sub.sh) to run a parallel job that uses 4 MPI processes with OpenMPI and each MPI process runs with 3 threads:

#!/bin/bash
#SBATCH --job-name=hybridtest
#SBATCH --partition=batch             # Partition (queue) name
#SBATCH --mail-type=END,FAIL   # Mail events (NONE, BEGIN, END, FAIL, ALL)
#SBATCH --mail-user=username@uga.edu # Where to send mail	
#SBATCH --nodes=2              # Number of nodes
#SBATCH --ntasks=4             # Number of MPI ranks
#SBATCH --ntasks-per-node=2    # Number of MPI ranks per node
#SBATCH --cpus-per-task=3      # Number of OpenMP threads for each MPI process/rank
#SBATCH --mem-per-cpu=2000mb   # Per processor memory request
#SBATCH --time=2-00:00:00      # Walltime in hh:mm:ss or d-hh:mm:ss (2 days in the example)
#SBATCH --output=hybridtest_%j.out

cd $SLURM_SUBMIT_DIR
 
export OMP_NUM_THREADS=$SLURM_CPUS_PER_TASK

mpirun ./myhybridprog.exe


Array job

Sample job submission script (sub.sh) to submit an array job with 10 elements. In this example, each array job element will run the a.out binary using an input file called input_0, input_1, ..., input_9.

#!/bin/bash
#SBATCH --job-name=arrayjobtest   # Job name
#SBATCH --partition=batch             # Partition (queue) name
#SBATCH --ntasks=1                  # Run a single task
#SBATCH --mem=1gb                   # Job Memory
#SBATCH --time=10:00:00             # Time limit hrs:min:sec
#SBATCH --output=array_%A-%a.log    # Standard output and error log
#SBATCH --array=0-9                 # Array range

cd $SLURM_SUBMIT_DIR

module load foss/2016b # load any needed module files, e.g. foss/2016b

time ./a.out < input_$SLURM_ARRAY_TASK_ID

GPU/CUDA

To be added.


Back to Top

How to submit a job to the batch queue

With the resource requirements specified in the job submission script (sub.sh), submit your job with

sbatch <scriptname>

For example

sbatch sub.sh

Once the job is submitted, the Job ID of the job (e.g. 12345) will be printed on the screen.



Back to Top

Discovering if the queue is busy

To be added.


Back to Top

How to open an interactive session

An interactive session on a compute node can be started with the command

qlogin

This command will start an interactive session with one core on one of the interactive nodes. The qlogin command is an alias for


so it can be used to start an interactive session on a node with feature inter and with a walltime of 12h.



Back to Top

How to run an interactive job with Graphical User Interface capabilities

To be added.


Back to Top



Back to Top

How to check on running or pending jobs

To list all running and pending jobs (by all users), use the command

squeue


For detailed information on how to monitor your jobs, please see Monitoring Jobs on the teaching cluster.


Back to Top

How to delete a running or pending job

To delete one of your running or pending job, use the command

scancel jobid

For example, to delete a job with Job ID 12345 use

scancel 12345

Back to Top

How to check resource utilization of a finished job

To be added.


Back to Top