Translations:R/62/en

From Alliance Doc
Jump to navigation Jump to search

2. Copy the following content in a job submission script called job_makecluster.sh: {{File

 |name=job_makecluster.sh
 |lang="bash"
 |escape|mode=text
 |contents=
  1. !/bin/bash
  2. SBATCH --account=def-someacct # replace this with your supervisors account
  3. SBATCH --ntasks-per-node=2 # add this line to make sure that slurm uses multiple nodes
  4. SBATCH --ntasks=4 # number of processes
  5. SBATCH --mem-per-cpu=512M # memory; default unit is megabytes
  6. SBATCH --time=00:05:00 # time (HH:MM:SS)