From 33efb0757d99503a920d6ab0d6eef5f8c3cc29d7 Mon Sep 17 00:00:00 2001 From: Johannes Merl Date: Thu, 9 May 2024 13:27:01 +0200 Subject: [PATCH] fix6 --- run.sbatch | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/run.sbatch b/run.sbatch index ee0fd37..391f939 100755 --- a/run.sbatch +++ b/run.sbatch @@ -2,8 +2,8 @@ #SBATCH --time=12:00:00 #SBATCH --partition=cpu #SBATCH --array=0-810 -#SBATCH --output=./output/output_run_%a.txt -#SBATCH --error=./output/error_run_%a.txt +#SBATCH --output=/data/%A/merljoha/output/output_run_%a.txt +#SBATCH --error=/data/%A/merljoha/output/error_run_%a.txt #SBATCH --exclude=oc222 #SBATCH --mem=6G #SBATCH --nodes=1 @@ -13,7 +13,7 @@ current_problem=${problems[(${SLURM_ARRAY_TASK_ID}/270)]} current_variant=$(((${SLURM_ARRAY_TASK_ID} / 30) % 9 + 1)) current_branch="${current_problem}_${current_variant}" -git clone -b $current_branch --single-branch "https://merl.dnshome.de/git/Hans/haga.git" ../../../oc-compute02/merljoha/$current_branch -git clone -b $current_branch --single-branch "https://merl.dnshome.de/git/Hans/haga.git" ../../../oc-compute03/merljoha/$current_branch +git clone -b $current_branch --single-branch "https://merl.dnshome.de/git/Hans/haga.git" /data/oc-compute02/merljoha/$current_branch +git clone -b $current_branch --single-branch "https://merl.dnshome.de/git/Hans/haga.git" /data/oc-compute03/merljoha/$current_branch srun bash -c "cd /data/$SLURMD_NODENAME/merljoha/$current_branch; nix develop --command stack --no-nix --system-ghc --no-install-ghc run haga-lambda"