Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
doku:vsc5quickstart [2022/06/23 13:17] – [SLURM] jzdoku:vsc5quickstart [2022/06/23 13:23] – [Submit a Job] jz
Line 202: Line 202:
 ./my_program ./my_program
 </file> </file>
 +
 +Job Scripts for the AMD CPU nodes:
 +
 +<file sh zen3_0512.sh>
 +#!/bin/sh
 +#SBATCH -J <meaningful name for job>
 +#SBATCH -N 1
 +#SBATCH --partition=zen3_0512
 +#SBATCH --qos goodluck
 +./my_program
 +</file>
 +
 +<file sh zen3_1024.sh>
 +#!/bin/sh
 +#SBATCH -J <meaningful name for job>
 +#SBATCH -N 1
 +#SBATCH --partition=zen3_1024
 +#SBATCH --qos goodluck
 +./my_program
 +</file>
 +
 +<file sh zen3_2048.sh>
 +#!/bin/sh
 +#SBATCH -J <meaningful name for job>
 +#SBATCH -N 1
 +#SBATCH --partition=zen3_2048
 +#SBATCH --qos goodluck
 +./my_program
 +</file>
 +
  
 Example job script to use both GPUs on a GPU nodes: Example job script to use both GPUs on a GPU nodes:
  • doku/vsc5quickstart.txt
  • Last modified: 2023/05/17 15:28
  • by msiegel