From 817457ccc81f25c3273970c7934f54a2afed2bc3 Mon Sep 17 00:00:00 2001 From: Viren6 <94880762+Viren6@users.noreply.github.com> Date: Mon, 20 Jan 2025 01:57:54 +0000 Subject: [PATCH] Adjust further to 3000 --- server/montytest/rundb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/montytest/rundb.py b/server/montytest/rundb.py index 5935f5bf..ecfa8310 100644 --- a/server/montytest/rundb.py +++ b/server/montytest/rundb.py @@ -1071,7 +1071,7 @@ def worker_cap(self, run, worker_info): BASELINE_NPS = 198243 # Baseline NPS remember to adjust game_time = run["args"]["nodes"] * 137 / (BASELINE_NPS / 5) games = self.task_duration / game_time * worker_info["concurrency"] - games = min(max(2, 2 * int(games / 2 + 1 / 2)), 3500) + games = min(max(2, 2 * int(games / 2 + 1 / 2)), 3000) else: games = max(2, 2 * int(games / 2 + 1 / 2)) return games