From 559dbc529f72e02df16eacfd92082923e30bb99a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20El=20Kharroubi?= <michael.el-kharroubi@hesge.ch> Date: Thu, 22 Feb 2024 11:39:33 +0100 Subject: [PATCH] Add scripts for clusters --- Examples/baobab_run.sh | 11 +++++++++++ Examples/ygg_run.sh | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100644 Examples/baobab_run.sh create mode 100644 Examples/ygg_run.sh diff --git a/Examples/baobab_run.sh b/Examples/baobab_run.sh new file mode 100644 index 0000000..26ccc56 --- /dev/null +++ b/Examples/baobab_run.sh @@ -0,0 +1,11 @@ +#!/bin/sh +#SBATCH --job-name=hpc_2024_future +#SBATCH --time=00:30:00 +#SBATCH --partition=shared-gpu +#SBATCH --gpus=1 +#SBATCH --constraint="COMPUTE_TYPE_AMPERE|COMPUTE_TYPE_TURING|" +#SBATCH --output=hpc_2024_future-%J.out + +module load NVHPC/21.11 + +srun ./artefacts/future \ No newline at end of file diff --git a/Examples/ygg_run.sh b/Examples/ygg_run.sh new file mode 100644 index 0000000..91c189e --- /dev/null +++ b/Examples/ygg_run.sh @@ -0,0 +1,11 @@ +#!/bin/sh +#SBATCH --job-name=hpc_2024_future +#SBATCH --time=00:30:00 +#SBATCH --partition=shared-gpu +#SBATCH --gpus=1 +#SBATCH --constraint="COMPUTE_TYPE_TURING" +#SBATCH --output=hpc_2024_future-%J.out + +module load NVHPC/21.11 + +srun ./artefacts/future \ No newline at end of file -- GitLab