diff options
author | Pherkel | 2023-08-20 14:43:18 +0200 |
---|---|---|
committer | Pherkel | 2023-08-20 14:43:18 +0200 |
commit | 1d7939c80024b7f55b26a3bd297fc4b8d54dc4f6 (patch) | |
tree | 798edcd77a3aa86bdbe5d9b151f2571033897ddd /hpc.sh | |
parent | 2fd748fd6339573f1ce5b961a563197a3eacf284 (diff) | |
parent | f88c9afc6e9efcb6f79a959779114095c23e0cef (diff) |
Merge branch 'main' into tokenizer
Diffstat (limited to 'hpc.sh')
-rwxr-xr-x | hpc.sh | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -0,0 +1,19 @@ +#!/bin/bash + +#SBATCH --job-name=swr-teamprojekt +#SBATCH --partition=a100 +#SBATCH --time=00:30:00 + +### Note: --gres=gpu:x should equal to ntasks-per-node +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=1 +#SBATCH --gres=gpu:a100:1 +#SBATCH --cpus-per-task=8 +#SBATCH --mem=64gb +#SBATCH --chdir=/mnt/lustre/mladm/mfa252/SWR2-cool-projekt-main/ +#SBATCH --output=/mnt/lustre/mladm/mfa252/%x-%j.out + +source venv/bin/activate + +### the command to run +srun ./hpc_train.sh |