Skip to content
Snippets Groups Projects
Verified Commit 6709751d authored by Hernán Asorey's avatar Hernán Asorey
Browse files

Remove --exclusive parameter for sbatch in do_showers to allow multiple...

Remove --exclusive parameter for sbatch in do_showers to allow multiple excecutions, avoiding the AssocGrpNodeLimit slurm limitation.
parent 4025e9fb
Branches dev-asoreyh
No related tags found
No related merge requests found
......@@ -307,7 +307,7 @@ elif $useslurm; then
script="$wdir/run-${prj}-${nrp}.sbatch"
echo "#!/bin/bash" > $script
echo "#SBATCH --export=ALL" >> $script
echo "#SBATCH --exclusive" >> $script
# echo "#SBATCH --exclusive" >> $script
echo "#SBATCH -o $wdir/$prj-${nrp}_srun_%j.log" >> $script
echo "echo -n \"Start: \"; date" >> $script
echo "hostname" >> $script
......@@ -344,7 +344,7 @@ if $useslurm; then
script="$wdir/run-${prj}.sbatch"
echo "#!/bin/bash" > $script
echo "#SBATCH --export=ALL" >> $script
echo "#SBATCH --exclusive" >> $script
# echo "#SBATCH --exclusive" >> $script
echo "#SBATCH --partition $slurm" >> $script
echo "#SBATCH --time 5-12:00" >> $script
echo "#SBATCH -o $wdir/$prj_srun_%j.log" >> $script
......
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