We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0d0a95 commit 1ea9a0dCopy full SHA for 1ea9a0d
engine/src/uci/optionsuci.cpp
@@ -56,11 +56,15 @@ void OptionsUCI::init(OptionsMap &o)
56
#ifdef USE_RL
57
o["Batch_Size"] << Option(8, 1, 8192);
58
#else
59
+#ifdef OPENVINO
60
+ o["Batch_Size"] << Option(16, 1, 8192);
61
+#else
62
#ifdef MODE_CHESS
63
o["Batch_Size"] << Option(64, 1, 8192);
64
65
o["Batch_Size"] << Option(16, 1, 8192);
66
#endif
67
+#endif
68
69
o["Child_Threads"] << Option(4, 1, 512);
70
o["Centi_CPuct_Init"] << Option(250, 1, 99999);
0 commit comments