Skip to content

Commit

Permalink
Merge pull request #819 from erikrikarddaniel/fix-strict-gt-pdc-kth
Browse files Browse the repository at this point in the history
Change two < to <= for the pdc_kth config
  • Loading branch information
erikrikarddaniel authored Dec 17, 2024
2 parents 1f1658b + ba1dc20 commit 533f8a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf/pdc_kth.config
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def clusterOptionsCreator = { mem, time, cpus ->
case "dardel":
String extra = ''

if (time < 7.d && mem <= 111.GB && cpus < 256) {
if (time <= 7.d && mem <= 111.GB && cpus <= 256) {
extra += ' -p shared '
}
else if (time < 1.d) {
Expand Down

0 comments on commit 533f8a8

Please sign in to comment.