From ce64ddf96947273cba7150b01f899dbea6e15f48 Mon Sep 17 00:00:00 2001 From: Armin Bacher <armin.bacher@student.uni-halle.de> Date: Mon, 31 Mar 2025 21:51:55 +0000 Subject: [PATCH] Delete run-training.sh --- Testing/run-training.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 Testing/run-training.sh diff --git a/Testing/run-training.sh b/Testing/run-training.sh deleted file mode 100644 index 575d793..0000000 --- a/Testing/run-training.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -#SBATCH --nodes=1 # Run all processes on a single node -#SBATCH --ntasks=1 # Run a single task -#SBATCH --mem=64G # Job memory request -#SBATCH --gres=gpu:2 # Requests GPU -#SBATCH --cpus-per-task=8 # Number of CPU cores per task -#SBATCH --time=02:00:00 # Time limit hrs:min:sec - -# Kopiere das Python-Skript auf den Rechenknoten -sbcast GPT-2-Small-1k-opt.py /zpool1/slurm_data/anhnd/test.py -# Führe das Python-Skript mit absolutem Pfad aus und leite die Ausgabe ins Home-Verzeichnis um -srun python3.11 /zpool1/slurm_data/anhnd/test.py > ~/projekt/job_output_${SLURM_JOB_ID}.log 2>&1 -#Lösche die .py-Datei nach der Berechnung, um Speicherplatz zu sparen -srun rm /zpool1/slurm_data/anhnd/test.py -- GitLab