From 306049a518b57a66d9376a3fc845f8ac87dee6a6 Mon Sep 17 00:00:00 2001 From: QueensGambit Date: Sat, 4 Sep 2021 16:47:48 +0200 Subject: [PATCH] add "Threads_NN_Inference" to optionsuci.cpp (#153) --- engine/src/uci/optionsuci.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/engine/src/uci/optionsuci.cpp b/engine/src/uci/optionsuci.cpp index 3db24dcb..124a5b54 100644 --- a/engine/src/uci/optionsuci.cpp +++ b/engine/src/uci/optionsuci.cpp @@ -153,6 +153,9 @@ void OptionsUCI::init(OptionsMap &o) o["SyzygyPath"] << Option("", on_tb_path); #endif o["Threads"] << Option(2, 1, 512); +#ifdef OPENVINO + o["Threads_NN_Inference"] << Option(8, 1, 512); +#endif o["Timeout_MS"] << Option(0, 0, 99999999); #ifdef MODE_LICHESS o["UCI_Variant"] << Option(get_first_variant_with_model().c_str(), availableVariants);