Skip to content

Commit e8b409d

Browse files
committed
slightly tweak the formula for 24 cores
1 parent f35eba8 commit e8b409d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ void Thread::search(bool isMainThread) {
376376
{
377377
// Set up the new depth for the helper threads
378378
if (!isMainThread)
379-
depth = Threads.main()->depth + Depth(int(2.3 * log(1 + this->idx)));
379+
depth = Threads.main()->depth + Depth(int(2.2 * log(1 + this->idx)));
380380

381381
// Age out PV variability metric
382382
if (isMainThread)

0 commit comments

Comments
 (0)