Skip to content

Commit

Permalink
Adjust further to 3000
Browse files Browse the repository at this point in the history
  • Loading branch information
Viren6 committed Jan 20, 2025
1 parent 94bb097 commit 817457c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/montytest/rundb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 817457c

Please sign in to comment.