diff options
author | Thomas White <taw@physics.org> | 2019-03-06 15:02:25 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-03-06 15:02:25 +0100 |
commit | 02e1c27088afab67f2e637ab57fd11ed1f0f71e5 (patch) | |
tree | 92e6acc542027dda14731eb07f44f6a027107d45 /scripts | |
parent | 177696b03de266772509a9818f74f1e1accd89fb (diff) |
turbo-index-slurm: Comment out --nice value
It's not needed as long as the queue implements proper fair sharing
between users.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/turbo-index-slurm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/turbo-index-slurm b/scripts/turbo-index-slurm index f05c78b9..b20af403 100755 --- a/scripts/turbo-index-slurm +++ b/scripts/turbo-index-slurm @@ -64,7 +64,8 @@ for FILE in split-events-${RUN}.lst*; do echo "#SBATCH --partition=mypartition" >> $SLURMFILE # Set your partition here echo "#SBATCH --time=01:00:00" >> $SLURMFILE echo "#SBATCH --nodes=1" >> $SLURMFILE - echo "#SBATCH --nice=100" >> $SLURMFILE # Set priority very low to allow other jobs through + # It may be polite to set the priority very low to allow other jobs through: + #echo "#SBATCH --nice=100" >> $SLURMFILE echo >> $SLURMFILE echo "#SBATCH --workdir $PWD" >> $SLURMFILE |