From a50bc4685c3525c016c9c60bd47b40a3038dbcff Mon Sep 17 00:00:00 2001 From: KUENZLI Pierre <kuenzlip@login1.bamboo> Date: Tue, 18 Mar 2025 15:59:07 +0100 Subject: [PATCH] ajout d'un script sbatch --- exercices/03-equation-chaleur/correction/heat.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 exercices/03-equation-chaleur/correction/heat.sh diff --git a/exercices/03-equation-chaleur/correction/heat.sh b/exercices/03-equation-chaleur/correction/heat.sh new file mode 100644 index 0000000..8691d66 --- /dev/null +++ b/exercices/03-equation-chaleur/correction/heat.sh @@ -0,0 +1,13 @@ +#! /bin/sh + +#SBATCH --job-name=heat +#SBATCH --output=output.o%j +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=1 +#SBATCH --mem-per-cpu=1000 +#SBATCH --partition=shared-gpu +#SBATCH --time=00:10:00 +#SBATCH --gpus=1 + +echo $SLURM_NODELIST +srun heat_equation -- GitLab