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 4e3baa86 authored by ulrich_y's avatar ulrich_y
Browse files

Revert "Fixed merlin script"

This reverts commit 9c017c2d12cbc3ee1edfb4e0c1d051882db1bbf6.

Thanks to M. Caubet for pointing this out.
parent 7f34bd39
No related branches found
No related tags found
No related merge requests found
......@@ -160,12 +160,13 @@ function run (){
source $conf
echo "[`date`] Executing job $this $conf $@"
# --exclusive guarantees that each job gets its own CPU core
# -n 1: one task
# -N 1: one node
outfile=$folder/worker_`joinname $@`_${SLURM_JOB_ID}
echo "srun -n 1 -c 1 $this $conf $@ &> $outfile &"
echo "srun --exclusive -n 1 -c 1 $this $conf $@ &> $outfile &"
if [ -f "/usr/bin/srun" ]; then
srun -n 1 -c 1 $this $conf $@ &> $outfile &
srun --exclusive -n 1 -c 1 $this $conf $@ &> $outfile &
else
stdbuf -oL -eL $this $conf $@ &> $outfile &
fi
......
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