This lesson is still being designed and assembled (Pre-Alpha version)

Submitting array jobs

Overview

Teaching: 15 min
Exercises: 15 min
Questions
  • How to submit, monitor or cancel array jobs (and why).

Objectives
  • Be able to submit, monitor and cancel array jobs applicable for several input scenarios

#!/bin/bash
##FIXME include additional opts here
#SBATCH --array=1-10

sleep 120 
hostname
echo $SLURM_TASK_ID

Key Points

  • First key point. Brief Answer to questions. (FIXME)