Skip to content

Commit

Permalink
Increase max core count for SPSA tasks
Browse files Browse the repository at this point in the history
it appears this limit is now less important than it was previously.
Gently increase it.
  • Loading branch information
vondele authored and ppigazzini committed Jan 12, 2025
1 parent d9a9750 commit 2f35cd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/fishtest/rundb.py
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@ def priority(run): # lower is better
# Limit the number of cores.
# Currently this is only done for spsa.
if "spsa" in run["args"]:
limit_cores = 40000 / math.sqrt(len(run["args"]["spsa"]["params"]))
limit_cores = 200000 / math.sqrt(len(run["args"]["spsa"]["params"]))
else:
limit_cores = 1000000 # infinity

Expand Down

0 comments on commit 2f35cd6

Please sign in to comment.