From a043874049d15d39c2592dfda4292e48266aa0a7 Mon Sep 17 00:00:00 2001 From: David Wu Date: Sun, 4 Aug 2024 17:58:52 -0400 Subject: [PATCH] Version 1.15.2 and minor further tweaks to config --- cpp/configs/gtp_human9d_search_example.cfg | 5 +++-- cpp/main.cpp | 4 ++-- cpp/tests/results/analysis/badoverride.txt.log | 2 +- cpp/tests/results/analysis/badoverride.txt.stderr | 2 +- cpp/tests/results/analysis/basic.txt.log | 2 +- cpp/tests/results/analysis/basic.txt.stderr | 2 +- cpp/tests/results/analysis/basic_sidetomove.stderr | 2 +- cpp/tests/results/analysis/basic_sidetomove.txt.log | 2 +- cpp/tests/results/analysis/humansl_sidetomove.stderr | 2 +- cpp/tests/results/analysis/pvvisits.txt.log | 2 +- cpp/tests/results/analysis/pvvisits.txt.stderr | 2 +- cpp/tests/results/analysis/pvvisits_nograph.stderr | 2 +- cpp/tests/results/analysis/pvvisits_nograph.txt.log | 2 +- cpp/tests/results/analysis/symmetry.txt.log | 2 +- cpp/tests/results/analysis/symmetry.txt.stderr | 2 +- cpp/tests/results/analysis/symmetry_with_pruning.stderr | 2 +- cpp/tests/results/analysis/symmetry_with_pruning.txt.log | 2 +- cpp/tests/results/gtp/avoidcorners.log | 2 +- cpp/tests/results/gtp/avoidcorners.stderr | 2 +- cpp/tests/results/gtp/basic.txt.log | 2 +- cpp/tests/results/gtp/basic.txt.stderr | 2 +- cpp/tests/results/gtp/defaultkomibutton.log | 2 +- cpp/tests/results/gtp/defaultkomibutton.stderr | 2 +- cpp/tests/results/gtp/defaultkomiterr.log | 2 +- cpp/tests/results/gtp/defaultkomiterr.stderr | 2 +- cpp/tests/results/gtp/defaultkomitt.log | 2 +- cpp/tests/results/gtp/defaultkomitt.stderr | 2 +- cpp/tests/results/gtp/ending.txt.log | 2 +- cpp/tests/results/gtp/ending.txt.stderr | 2 +- cpp/tests/results/gtp/forcedkomi.log | 2 +- cpp/tests/results/gtp/forcedkomi.stderr | 2 +- cpp/tests/results/gtp/genmoveanalyze.log | 2 +- cpp/tests/results/gtp/genmoveanalyze.stderr | 2 +- cpp/tests/results/gtp/handicap.txt.log | 2 +- cpp/tests/results/gtp/handicap.txt.stderr | 2 +- cpp/tests/results/gtp/humansl.log | 2 +- cpp/tests/results/gtp/humansl.stderr | 2 +- cpp/tests/results/gtp/humansl2.stderr | 2 +- cpp/tests/results/gtp/misc.txt.log | 4 ++-- cpp/tests/results/gtp/misc.txt.stderr | 2 +- cpp/tests/results/gtp/misc.txt.stdout | 2 +- cpp/tests/results/gtp/nologconfig.log | 2 +- cpp/tests/results/gtp/nologconfig.stderr | 2 +- cpp/tests/results/gtp/printsgf.txt.log | 2 +- cpp/tests/results/gtp/printsgf.txt.stderr | 2 +- cpp/tests/results/gtp/printsgffinalscore.txt.log | 2 +- cpp/tests/results/gtp/printsgffinalscore.txt.stderr | 2 +- cpp/tests/results/gtp/rawnn.txt.log | 2 +- cpp/tests/results/gtp/rawnn.txt.stderr | 2 +- cpp/tests/results/gtp/rootsymprune.log | 2 +- cpp/tests/results/gtp/rootsymprune.stderr | 2 +- cpp/tests/results/gtp/rules.txt.log | 2 +- cpp/tests/results/gtp/rules.txt.stderr | 2 +- cpp/tests/results/gtp/searchcancellable.log | 2 +- cpp/tests/results/gtp/searchcancellable.stderr | 2 +- cpp/tests/results/gtp/set_boardsize_twice.txt.log | 2 +- cpp/tests/results/gtp/set_boardsize_twice.txt.stderr | 2 +- cpp/tests/results/gtp/set_position.txt.log | 2 +- cpp/tests/results/gtp/set_position.txt.stderr | 2 +- cpp/tests/results/gtp/setparams.txt.log | 2 +- cpp/tests/results/gtp/setparams.txt.stderr | 2 +- cpp/tests/results/gtp/time.txt.log | 2 +- cpp/tests/results/gtp/time.txt.stderr | 2 +- 63 files changed, 67 insertions(+), 66 deletions(-) diff --git a/cpp/configs/gtp_human9d_search_example.cfg b/cpp/configs/gtp_human9d_search_example.cfg index d70661cb8..82195d574 100644 --- a/cpp/configs/gtp_human9d_search_example.cfg +++ b/cpp/configs/gtp_human9d_search_example.cfg @@ -44,10 +44,11 @@ resignMinMovesPerBoardArea = 0.40 # This is due to the strong bias of the human SL network. # You can reduce this number if you are on weaker hardware. It may reduce strength a bit but will still # provide a huge strength boost over using the humanSL network alone as in gtp_human5k_example.cfg -maxVisits = 800 # 40 in gtp_human5k_example.cfg. +maxVisits = 400 # 40 in gtp_human5k_example.cfg. # Having more than one thread speeds up search when visits are larger. -numSearchThreads = 4 # 1 in gtp_human5k_example.cfg. +# Make sure the number of threads is much smaller than the number of visits, however. +numSearchThreads = 8 # 1 in gtp_human5k_example.cfg. lagBuffer = 1.0 # Rough scale in seconds to randomly delay moving, so as not to respond instantly. diff --git a/cpp/main.cpp b/cpp/main.cpp index ad943c01e..5d2876aaa 100644 --- a/cpp/main.cpp +++ b/cpp/main.cpp @@ -208,11 +208,11 @@ int main(int argc, const char* const* argv) { string Version::getKataGoVersion() { - return string("1.15.1"); + return string("1.15.2"); } string Version::getKataGoVersionForHelp() { - return string("KataGo v1.15.1"); + return string("KataGo v1.15.2"); } string Version::getKataGoVersionFullInfo() { diff --git a/cpp/tests/results/analysis/badoverride.txt.log b/cpp/tests/results/analysis/badoverride.txt.log index ced3b294d..4a636dca6 100644 --- a/cpp/tests/results/analysis/badoverride.txt.log +++ b/cpp/tests/results/analysis/badoverride.txt.log @@ -22,7 +22,7 @@ rootSymmetryPruning = false trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/badoverride.txt.stderr b/cpp/tests/results/analysis/badoverride.txt.stderr index ced3b294d..4a636dca6 100644 --- a/cpp/tests/results/analysis/badoverride.txt.stderr +++ b/cpp/tests/results/analysis/badoverride.txt.stderr @@ -22,7 +22,7 @@ rootSymmetryPruning = false trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/basic.txt.log b/cpp/tests/results/analysis/basic.txt.log index 8ce1ce321..a22b8bb9f 100644 --- a/cpp/tests/results/analysis/basic.txt.log +++ b/cpp/tests/results/analysis/basic.txt.log @@ -22,7 +22,7 @@ rootSymmetryPruning = false trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/basic.txt.stderr b/cpp/tests/results/analysis/basic.txt.stderr index 8ce1ce321..a22b8bb9f 100644 --- a/cpp/tests/results/analysis/basic.txt.stderr +++ b/cpp/tests/results/analysis/basic.txt.stderr @@ -22,7 +22,7 @@ rootSymmetryPruning = false trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/basic_sidetomove.stderr b/cpp/tests/results/analysis/basic_sidetomove.stderr index c1df6b7bc..82949d12b 100644 --- a/cpp/tests/results/analysis/basic_sidetomove.stderr +++ b/cpp/tests/results/analysis/basic_sidetomove.stderr @@ -22,7 +22,7 @@ rootSymmetryPruning = false trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/basic_sidetomove.txt.log b/cpp/tests/results/analysis/basic_sidetomove.txt.log index c1df6b7bc..82949d12b 100644 --- a/cpp/tests/results/analysis/basic_sidetomove.txt.log +++ b/cpp/tests/results/analysis/basic_sidetomove.txt.log @@ -22,7 +22,7 @@ rootSymmetryPruning = false trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/humansl_sidetomove.stderr b/cpp/tests/results/analysis/humansl_sidetomove.stderr index b52655574..a905f4263 100644 --- a/cpp/tests/results/analysis/humansl_sidetomove.stderr +++ b/cpp/tests/results/analysis/humansl_sidetomove.stderr @@ -23,7 +23,7 @@ rootSymmetryPruning = false trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/pvvisits.txt.log b/cpp/tests/results/analysis/pvvisits.txt.log index 173e6fbd6..b111ed02c 100644 --- a/cpp/tests/results/analysis/pvvisits.txt.log +++ b/cpp/tests/results/analysis/pvvisits.txt.log @@ -22,7 +22,7 @@ rootSymmetryPruning = false trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/pvvisits.txt.stderr b/cpp/tests/results/analysis/pvvisits.txt.stderr index 173e6fbd6..b111ed02c 100644 --- a/cpp/tests/results/analysis/pvvisits.txt.stderr +++ b/cpp/tests/results/analysis/pvvisits.txt.stderr @@ -22,7 +22,7 @@ rootSymmetryPruning = false trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/pvvisits_nograph.stderr b/cpp/tests/results/analysis/pvvisits_nograph.stderr index 6f369900f..0d9a19222 100644 --- a/cpp/tests/results/analysis/pvvisits_nograph.stderr +++ b/cpp/tests/results/analysis/pvvisits_nograph.stderr @@ -22,7 +22,7 @@ trtUseFP16 = false useGraphSearch = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/pvvisits_nograph.txt.log b/cpp/tests/results/analysis/pvvisits_nograph.txt.log index 6f369900f..0d9a19222 100644 --- a/cpp/tests/results/analysis/pvvisits_nograph.txt.log +++ b/cpp/tests/results/analysis/pvvisits_nograph.txt.log @@ -22,7 +22,7 @@ trtUseFP16 = false useGraphSearch = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/symmetry.txt.log b/cpp/tests/results/analysis/symmetry.txt.log index 868636fcb..217f03c04 100644 --- a/cpp/tests/results/analysis/symmetry.txt.log +++ b/cpp/tests/results/analysis/symmetry.txt.log @@ -22,7 +22,7 @@ rootSymmetryPruning = false trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/symmetry.txt.stderr b/cpp/tests/results/analysis/symmetry.txt.stderr index 868636fcb..217f03c04 100644 --- a/cpp/tests/results/analysis/symmetry.txt.stderr +++ b/cpp/tests/results/analysis/symmetry.txt.stderr @@ -22,7 +22,7 @@ rootSymmetryPruning = false trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/symmetry_with_pruning.stderr b/cpp/tests/results/analysis/symmetry_with_pruning.stderr index 94aa5a015..4d361d42b 100644 --- a/cpp/tests/results/analysis/symmetry_with_pruning.stderr +++ b/cpp/tests/results/analysis/symmetry_with_pruning.stderr @@ -22,7 +22,7 @@ rootSymmetryPruning = true trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/analysis/symmetry_with_pruning.txt.log b/cpp/tests/results/analysis/symmetry_with_pruning.txt.log index 94aa5a015..4d361d42b 100644 --- a/cpp/tests/results/analysis/symmetry_with_pruning.txt.log +++ b/cpp/tests/results/analysis/symmetry_with_pruning.txt.log @@ -22,7 +22,7 @@ rootSymmetryPruning = true trtUseFP16 = false : Analysis Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : nnRandSeed0 = analysisTest : After dedups: nnModelFile0 = tests/models/g170-b6c96-s175395328-d26788732.bin.gz useFP16 false useNHWC false : Initializing neural net buffer to be size 19 * 19 allowing smaller boards diff --git a/cpp/tests/results/gtp/avoidcorners.log b/cpp/tests/results/gtp/avoidcorners.log index 3dc8cd226..641f1088c 100644 --- a/cpp/tests/results/gtp/avoidcorners.log +++ b/cpp/tests/results/gtp/avoidcorners.log @@ -37,7 +37,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : Added 48 shapes to penalize repeats for bot 0 from tests/data/cornermoves.sgf diff --git a/cpp/tests/results/gtp/avoidcorners.stderr b/cpp/tests/results/gtp/avoidcorners.stderr index c9daa9f8f..aa756e214 100644 --- a/cpp/tests/results/gtp/avoidcorners.stderr +++ b/cpp/tests/results/gtp/avoidcorners.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/basic.txt.log b/cpp/tests/results/gtp/basic.txt.log index ca0947862..365c947b0 100644 --- a/cpp/tests/results/gtp/basic.txt.log +++ b/cpp/tests/results/gtp/basic.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/basic.txt.stderr b/cpp/tests/results/gtp/basic.txt.stderr index 135d6cc0f..286afe883 100644 --- a/cpp/tests/results/gtp/basic.txt.stderr +++ b/cpp/tests/results/gtp/basic.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/defaultkomibutton.log b/cpp/tests/results/gtp/defaultkomibutton.log index 1517d4804..4fc8a7d0a 100644 --- a/cpp/tests/results/gtp/defaultkomibutton.log +++ b/cpp/tests/results/gtp/defaultkomibutton.log @@ -34,7 +34,7 @@ taxRule = NONE trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using koPOSITIONALscoreAREAtaxNONEsui0button1 rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/defaultkomibutton.stderr b/cpp/tests/results/gtp/defaultkomibutton.stderr index 031dff037..7256a1909 100644 --- a/cpp/tests/results/gtp/defaultkomibutton.stderr +++ b/cpp/tests/results/gtp/defaultkomibutton.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using koPOSITIONALscoreAREAtaxNONEsui0button1 rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/defaultkomiterr.log b/cpp/tests/results/gtp/defaultkomiterr.log index 4abd1a893..19f1f9217 100644 --- a/cpp/tests/results/gtp/defaultkomiterr.log +++ b/cpp/tests/results/gtp/defaultkomiterr.log @@ -34,7 +34,7 @@ taxRule = NONE trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using koPOSITIONALscoreTERRITORYtaxNONEsui0 rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/defaultkomiterr.stderr b/cpp/tests/results/gtp/defaultkomiterr.stderr index 2e4ccbad9..2747c4efc 100644 --- a/cpp/tests/results/gtp/defaultkomiterr.stderr +++ b/cpp/tests/results/gtp/defaultkomiterr.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using koPOSITIONALscoreTERRITORYtaxNONEsui0 rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/defaultkomitt.log b/cpp/tests/results/gtp/defaultkomitt.log index 094a13835..a79829c83 100644 --- a/cpp/tests/results/gtp/defaultkomitt.log +++ b/cpp/tests/results/gtp/defaultkomitt.log @@ -34,7 +34,7 @@ taxRule = NONE trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using koPOSITIONALscoreAREAtaxNONEsui0 rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/defaultkomitt.stderr b/cpp/tests/results/gtp/defaultkomitt.stderr index 18365a6a7..0f299501a 100644 --- a/cpp/tests/results/gtp/defaultkomitt.stderr +++ b/cpp/tests/results/gtp/defaultkomitt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using koPOSITIONALscoreAREAtaxNONEsui0 rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/ending.txt.log b/cpp/tests/results/gtp/ending.txt.log index e0b3f9059..bb3c62a98 100644 --- a/cpp/tests/results/gtp/ending.txt.log +++ b/cpp/tests/results/gtp/ending.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/ending.txt.stderr b/cpp/tests/results/gtp/ending.txt.stderr index b3d370798..be4f89ff8 100644 --- a/cpp/tests/results/gtp/ending.txt.stderr +++ b/cpp/tests/results/gtp/ending.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/forcedkomi.log b/cpp/tests/results/gtp/forcedkomi.log index d09675530..4048839a9 100644 --- a/cpp/tests/results/gtp/forcedkomi.log +++ b/cpp/tests/results/gtp/forcedkomi.log @@ -35,7 +35,7 @@ taxRule = NONE trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using koPOSITIONALscoreAREAtaxNONEsui0button1 rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/forcedkomi.stderr b/cpp/tests/results/gtp/forcedkomi.stderr index 69ea8d043..ae40a1b5b 100644 --- a/cpp/tests/results/gtp/forcedkomi.stderr +++ b/cpp/tests/results/gtp/forcedkomi.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using koPOSITIONALscoreAREAtaxNONEsui0button1 rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/genmoveanalyze.log b/cpp/tests/results/gtp/genmoveanalyze.log index a372be8e1..16844a9c0 100644 --- a/cpp/tests/results/gtp/genmoveanalyze.log +++ b/cpp/tests/results/gtp/genmoveanalyze.log @@ -1,5 +1,5 @@ : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/genmoveanalyze.stderr b/cpp/tests/results/gtp/genmoveanalyze.stderr index 9760b9456..4a9002119 100644 --- a/cpp/tests/results/gtp/genmoveanalyze.stderr +++ b/cpp/tests/results/gtp/genmoveanalyze.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 9 boardYSize 9 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/handicap.txt.log b/cpp/tests/results/gtp/handicap.txt.log index cfc0c6c39..5d24b3253 100644 --- a/cpp/tests/results/gtp/handicap.txt.log +++ b/cpp/tests/results/gtp/handicap.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/handicap.txt.stderr b/cpp/tests/results/gtp/handicap.txt.stderr index 9b04dd7b2..aeb98fdce 100644 --- a/cpp/tests/results/gtp/handicap.txt.stderr +++ b/cpp/tests/results/gtp/handicap.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/humansl.log b/cpp/tests/results/gtp/humansl.log index deaca7919..558e67137 100644 --- a/cpp/tests/results/gtp/humansl.log +++ b/cpp/tests/results/gtp/humansl.log @@ -1,5 +1,5 @@ : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using Japanese rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/humansl.stderr b/cpp/tests/results/gtp/humansl.stderr index 4b8a1051b..f40a38f31 100644 --- a/cpp/tests/results/gtp/humansl.stderr +++ b/cpp/tests/results/gtp/humansl.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using Japanese rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_human5k_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/humansl2.stderr b/cpp/tests/results/gtp/humansl2.stderr index 546d8322f..37743e94d 100644 --- a/cpp/tests/results/gtp/humansl2.stderr +++ b/cpp/tests/results/gtp/humansl2.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using Japanese rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_human5k_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/misc.txt.log b/cpp/tests/results/gtp/misc.txt.log index ae76eb4c0..fd31be4e0 100644 --- a/cpp/tests/results/gtp/misc.txt.log +++ b/cpp/tests/results/gtp/misc.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting @@ -71,7 +71,7 @@ trtUseFP16 = false : Controller: get_komi : = -23 : Controller: version -: = 1.15.1+g170-b6c96-s175M +: = 1.15.2+g170-b6c96-s175M : Controller: kata-get-models : = [{"internalName":"g170-b6c96-s175395328-d26788732","maxBatchSize":8,"name":"tests/models/g170-b6c96-s175395328-d26788732.bin.gz","usesHumanSLProfile":false,"usingFP16":"false","version":8}] : Controller: kata-set-param humanSLProfile rank_10k diff --git a/cpp/tests/results/gtp/misc.txt.stderr b/cpp/tests/results/gtp/misc.txt.stderr index f8fc2a102..e0ffcbc01 100644 --- a/cpp/tests/results/gtp/misc.txt.stderr +++ b/cpp/tests/results/gtp/misc.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/misc.txt.stdout b/cpp/tests/results/gtp/misc.txt.stdout index dea85db2d..3184ac046 100644 --- a/cpp/tests/results/gtp/misc.txt.stdout +++ b/cpp/tests/results/gtp/misc.txt.stdout @@ -8,7 +8,7 @@ = -23 -= 1.15.1+g170-b6c96-s175M += 1.15.2+g170-b6c96-s175M = [{"internalName":"g170-b6c96-s175395328-d26788732","maxBatchSize":8,"name":"tests/models/g170-b6c96-s175395328-d26788732.bin.gz","usesHumanSLProfile":false,"usingFP16":"false","version":8}] diff --git a/cpp/tests/results/gtp/nologconfig.log b/cpp/tests/results/gtp/nologconfig.log index c7b34d9b7..c509cb066 100644 --- a/cpp/tests/results/gtp/nologconfig.log +++ b/cpp/tests/results/gtp/nologconfig.log @@ -1,5 +1,5 @@ : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/nologconfig.stderr b/cpp/tests/results/gtp/nologconfig.stderr index 2b5db2b36..9b4c95e7b 100644 --- a/cpp/tests/results/gtp/nologconfig.stderr +++ b/cpp/tests/results/gtp/nologconfig.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/printsgf.txt.log b/cpp/tests/results/gtp/printsgf.txt.log index 611f6ff23..493826652 100644 --- a/cpp/tests/results/gtp/printsgf.txt.log +++ b/cpp/tests/results/gtp/printsgf.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/printsgf.txt.stderr b/cpp/tests/results/gtp/printsgf.txt.stderr index 91cb8ef44..42b2a5abf 100644 --- a/cpp/tests/results/gtp/printsgf.txt.stderr +++ b/cpp/tests/results/gtp/printsgf.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/printsgffinalscore.txt.log b/cpp/tests/results/gtp/printsgffinalscore.txt.log index da9052d9e..68c1ff816 100644 --- a/cpp/tests/results/gtp/printsgffinalscore.txt.log +++ b/cpp/tests/results/gtp/printsgffinalscore.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/printsgffinalscore.txt.stderr b/cpp/tests/results/gtp/printsgffinalscore.txt.stderr index f3129ce09..3c956eb31 100644 --- a/cpp/tests/results/gtp/printsgffinalscore.txt.stderr +++ b/cpp/tests/results/gtp/printsgffinalscore.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/rawnn.txt.log b/cpp/tests/results/gtp/rawnn.txt.log index 5e50ceb6f..f012e390e 100644 --- a/cpp/tests/results/gtp/rawnn.txt.log +++ b/cpp/tests/results/gtp/rawnn.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/rawnn.txt.stderr b/cpp/tests/results/gtp/rawnn.txt.stderr index f03e63119..4292b179b 100644 --- a/cpp/tests/results/gtp/rawnn.txt.stderr +++ b/cpp/tests/results/gtp/rawnn.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/rootsymprune.log b/cpp/tests/results/gtp/rootsymprune.log index cd00c5a32..4e6b7041f 100644 --- a/cpp/tests/results/gtp/rootsymprune.log +++ b/cpp/tests/results/gtp/rootsymprune.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/rootsymprune.stderr b/cpp/tests/results/gtp/rootsymprune.stderr index 944cfbfba..aa9eb1b4c 100644 --- a/cpp/tests/results/gtp/rootsymprune.stderr +++ b/cpp/tests/results/gtp/rootsymprune.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/rules.txt.log b/cpp/tests/results/gtp/rules.txt.log index 5d9d53693..6feec3ea1 100644 --- a/cpp/tests/results/gtp/rules.txt.log +++ b/cpp/tests/results/gtp/rules.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/rules.txt.stderr b/cpp/tests/results/gtp/rules.txt.stderr index 9e5f1fc3c..a1edb6f3b 100644 --- a/cpp/tests/results/gtp/rules.txt.stderr +++ b/cpp/tests/results/gtp/rules.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/searchcancellable.log b/cpp/tests/results/gtp/searchcancellable.log index e8bb52e6d..430401fec 100644 --- a/cpp/tests/results/gtp/searchcancellable.log +++ b/cpp/tests/results/gtp/searchcancellable.log @@ -1,5 +1,5 @@ : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/searchcancellable.stderr b/cpp/tests/results/gtp/searchcancellable.stderr index 9760b9456..4a9002119 100644 --- a/cpp/tests/results/gtp/searchcancellable.stderr +++ b/cpp/tests/results/gtp/searchcancellable.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 9 boardYSize 9 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/set_boardsize_twice.txt.log b/cpp/tests/results/gtp/set_boardsize_twice.txt.log index f42fb42f7..2be0da858 100644 --- a/cpp/tests/results/gtp/set_boardsize_twice.txt.log +++ b/cpp/tests/results/gtp/set_boardsize_twice.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/set_boardsize_twice.txt.stderr b/cpp/tests/results/gtp/set_boardsize_twice.txt.stderr index a0189c2c2..8c0233b63 100644 --- a/cpp/tests/results/gtp/set_boardsize_twice.txt.stderr +++ b/cpp/tests/results/gtp/set_boardsize_twice.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/set_position.txt.log b/cpp/tests/results/gtp/set_position.txt.log index 4ed033871..665de6ee2 100644 --- a/cpp/tests/results/gtp/set_position.txt.log +++ b/cpp/tests/results/gtp/set_position.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/set_position.txt.stderr b/cpp/tests/results/gtp/set_position.txt.stderr index 993eadadf..a8fa862f0 100644 --- a/cpp/tests/results/gtp/set_position.txt.stderr +++ b/cpp/tests/results/gtp/set_position.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/setparams.txt.log b/cpp/tests/results/gtp/setparams.txt.log index 8b871f709..06762b4f5 100644 --- a/cpp/tests/results/gtp/setparams.txt.log +++ b/cpp/tests/results/gtp/setparams.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/setparams.txt.stderr b/cpp/tests/results/gtp/setparams.txt.stderr index cd168781c..f52a1b4dd 100644 --- a/cpp/tests/results/gtp/setparams.txt.stderr +++ b/cpp/tests/results/gtp/setparams.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides diff --git a/cpp/tests/results/gtp/time.txt.log b/cpp/tests/results/gtp/time.txt.log index e16d7dc75..59fa56189 100644 --- a/cpp/tests/results/gtp/time.txt.log +++ b/cpp/tests/results/gtp/time.txt.log @@ -30,7 +30,7 @@ searchRandSeed = forTesting trtUseFP16 = false : GTP Engine starting... -: KataGo v1.15.1 +: KataGo v1.15.2 : Using TrompTaylor rules initially, unless GTP/GUI overrides this : Using 1 CPU thread(s) for search : nnRandSeed0 = forTesting diff --git a/cpp/tests/results/gtp/time.txt.stderr b/cpp/tests/results/gtp/time.txt.stderr index f8fc2a102..e0ffcbc01 100644 --- a/cpp/tests/results/gtp/time.txt.stderr +++ b/cpp/tests/results/gtp/time.txt.stderr @@ -1,4 +1,4 @@ -KataGo v1.15.1 +KataGo v1.15.2 Using TrompTaylor rules initially, unless GTP/GUI overrides this Initializing board with boardXSize 19 boardYSize 19 Loaded config configs/gtp_example.cfg and/or command-line and query overrides