From 2f35cd67b7907c18cbb17c77b2e429e1ea768624 Mon Sep 17 00:00:00 2001 From: Joost VandeVondele Date: Sun, 12 Jan 2025 17:14:04 +0100 Subject: [PATCH] Increase max core count for SPSA tasks it appears this limit is now less important than it was previously. Gently increase it. --- server/fishtest/rundb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/fishtest/rundb.py b/server/fishtest/rundb.py index c723a9e9b..5998c15a7 100644 --- a/server/fishtest/rundb.py +++ b/server/fishtest/rundb.py @@ -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