Skip to content

Commit 2ca142a

Browse files
snicoletzamar
authored andcommitted
Use minimumSplitDepth = 5
Using minimumSplitDepth = 5 seems to be the best compromise in the current SMP implementation STC, 11 threads: ELO: 14.87 +-4.1 (95%) LOS: 100.0% Total: 8509 W: 1497 L: 1133 D: 5879 STC, 4 threads: ELO: 0.30 +-2.8 (95%) LOS: 58.2% Total: 20000 W: 3365 L: 3348 D: 13287 STC, 2 threads: ELO: -1.02 +-2.0 (95%) LOS: 16.4% Total: 40000 W: 7087 L: 7204 D: 25709 Resolves #324
1 parent ffbaa1c commit 2ca142a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/thread.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ void ThreadPool::read_uci_options() {
323323

324324
// If zero (default) then set best minimum split depth automatically
325325
if (!minimumSplitDepth)
326-
minimumSplitDepth = requested < 8 ? 4 * ONE_PLY : 7 * ONE_PLY;
326+
minimumSplitDepth = 5 * ONE_PLY ;
327327

328328
while (size() < requested)
329329
push_back(new_thread<Thread>());

0 commit comments

Comments
 (0)