Skip to content

Commit 1ea9a0d

Browse files
committed
Use default batch size 16 for OPEN_VINO
1 parent a0d0a95 commit 1ea9a0d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

engine/src/uci/optionsuci.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,15 @@ void OptionsUCI::init(OptionsMap &o)
5656
#ifdef USE_RL
5757
o["Batch_Size"] << Option(8, 1, 8192);
5858
#else
59+
#ifdef OPENVINO
60+
o["Batch_Size"] << Option(16, 1, 8192);
61+
#else
5962
#ifdef MODE_CHESS
6063
o["Batch_Size"] << Option(64, 1, 8192);
6164
#else
6265
o["Batch_Size"] << Option(16, 1, 8192);
6366
#endif
67+
#endif
6468
#endif
6569
o["Child_Threads"] << Option(4, 1, 512);
6670
o["Centi_CPuct_Init"] << Option(250, 1, 99999);

0 commit comments

Comments
 (0)