From 8a20109c573e26213b692a68fa9c7b46646a91a6 Mon Sep 17 00:00:00 2001 From: Johannes Merl Date: Thu, 9 May 2024 13:00:03 +0200 Subject: [PATCH] fix2 --- run.sbatch | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/run.sbatch b/run.sbatch index 694829e..ae3d032 100755 --- a/run.sbatch +++ b/run.sbatch @@ -2,19 +2,18 @@ #SBATCH --time=12:00:00 #SBATCH --partition=cpu #SBATCH --array=0-810 -#SBATCH --output=/data/%N/merljoha/output/output_run_%a.txt -#SBATCH --error=/data/%N/merljoha/output/error_run_%a.txt +#SBATCH --output=../../%N/merljoha/output/output_run_%a.txt +#SBATCH --error=../../%N/merljoha/output/error_run_%a.txt #SBATCH --nodelist=oc-compute02,oc-compute03 #SBATCH --mem=6G +#SBATCH --nodes=1 problems=("iris" "nurse" "german") current_problem=${problems[(${SLURM_ARRAY_TASK_ID}/270)]} current_variant=$(((${SLURM_ARRAY_TASK_ID} / 30) % 9 + 1)) current_branch="${current_problem}_${current_variant}" -cd /data/oc-compute02/merljoha/ -git clone -b $current_branch --single-branch "https://merl.dnshome.de/git/Hans/haga.git" ./$current_branch -cd /data/oc-compute03/merljoha/ -git clone -b $current_branch --single-branch "https://merl.dnshome.de/git/Hans/haga.git" ./$current_branch +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 srun bash -c "cd /data/$SLURMD_NODENAME/merljoha/$current_branch; nix develop --command stack --no-nix --system-ghc --no-install-ghc run haga-lambda"