Skip to content

Commit 127d8e2

Browse files
authored
Add files via upload
1 parent 7f75d9f commit 127d8e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/engine.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
namespace lczero {
2828
namespace {
2929
// TODO(mooskagh) Move threads parameter handling to search.
30-
const int kDefaultThreads = 3;
30+
const int kDefaultThreads = 2;
3131
const char* kThreadsOption = "Number of worker threads";
3232
const char* kDebugLogStr = "Do debug logging into file";
3333

src/mcts/search.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ const int kSmartPruningToleranceMs = 200;
6666
void Search::PopulateUciParams(OptionsParser* options) {
6767
options->Add<IntOption>(kMiniBatchSizeStr, 1, 1024, "minibatch-size") = 256;
6868
options->Add<IntOption>(kMiniPrefetchBatchStr, 0, 1024, "max-prefetch") = 32;
69-
options->Add<FloatOption>(kCpuctStr, 0, 100, "cpuct") = 2.0;
69+
options->Add<FloatOption>(kCpuctStr, 0, 100, "cpuct") = 1.2;
7070
options->Add<FloatOption>(kTemperatureStr, 0, 100, "temperature") = 0.0;
7171
options->Add<IntOption>(kTempDecayMovesStr, 0, 100, "tempdecay-moves") = 0;
7272
options->Add<BoolOption>(kNoiseStr, "noise", 'n') = false;

0 commit comments

Comments
 (0)