From 96c6ed8ff39c87da81ddefcc7345ff0fdc601a9f Mon Sep 17 00:00:00 2001 From: Joost VandeVondele Date: Sun, 23 Apr 2023 15:44:12 +0200 Subject: [PATCH] Increase the default maximum number of games - tests take longer, we hit 800k from time to time - in the case the fleet lands, the number of tasks created per run is limited by 800k games. This limits the number of cores that can participate to a single run. --- server/fishtest/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/fishtest/views.py b/server/fishtest/views.py index bc0394afef..fce2eabc8d 100644 --- a/server/fishtest/views.py +++ b/server/fishtest/views.py @@ -795,7 +795,7 @@ def strip_message(m): batch_size=sprt_batch_size_games // 2, ) # game pairs # Limit on number of games played. - data["num_games"] = 800000 + data["num_games"] = 1600000 elif stop_rule == "spsa": data["num_games"] = int(request.POST["num-games"]) if data["num_games"] <= 0: