Skip to content

Commit

Permalink
Set threads to 1 again
Browse files Browse the repository at this point in the history
  • Loading branch information
tsoj committed Apr 30, 2024
1 parent ca6862b commit 804aaab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/testing/runSprtTest.nim
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ createStartPositionFile fenFileName, maxNumGames
let cuteataxxSettings =
%*{
"games": 100_000,
"concurrency": 7,#max(1, countProcessors() - 2), # TODO go back to dynamic thread number selection
"concurrency": max(1, countProcessors() - 2),
"ratinginterval": 100,
"verbose": false,
"debug": false,
Expand Down
2 changes: 1 addition & 1 deletion src/timeManagedSearch.nim
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type SearchInfo* {.requiresInit.} = object
[red: Seconds.high, blue: Seconds.high]
moveTime*: Seconds = Seconds.high
nodes*: int = int.high
numThreads*: int = 4
numThreads*: int = 1
eval*: EvaluationFunction = perspectiveEvaluate

type MoveTime = object
Expand Down

0 comments on commit 804aaab

Please sign in to comment.