Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit ee149371 authored by ulrich_y's avatar ulrich_y
Browse files

Fixed merlin script

parent 0938546c
No related branches found
No related tags found
No related merge requests found
......@@ -65,11 +65,10 @@ function run (){
source $1
echo "[`date`] Executing job $this $@"
# --exclusive guarantees that each job gets its own CPU core
# -n 1: one task
# -N 1: one node
echo "srun --exclusive -n 1 -c 1 $this $@ &> $folder/worker_${2}_${4}_${3}_${5}_${SLURM_JOB_ID} &"
srun --exclusive -n 1 -c 1 $this $@ &> $folder/worker_${2}_${3}_${4}_${5}_${SLURM_JOB_ID} &
echo "srun -n 1 -c 1 $this $@ &> $folder/worker_${2}_${4}_${3}_${5}_${SLURM_JOB_ID} &"
srun -n 1 -c 1 $this $@ &> $folder/worker_${2}_${3}_${4}_${5}_${SLURM_JOB_ID} &
sleep 1
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment