Merged
Conversation
added split_budget_across_nodes() refactoring: create_new_node(), handle_returns()
added typedef Budget added handle_single_split()
added StateObj* currentState parameter
added "Trajectory& trajectoryBuffer" to get_new_child_to_evaluate()
added debug comments deactived "d->noVisitIdx == 1" condition
changed initSize to 2 cleanup and asserts
added NONE_IDX in constants.h
added NeuralNetData to SearchThread removed run_search_thread() added run_backup_values() added run_create_mini_batch() added UCI-Option ChildThreads increased default Batch_Size to 64 changed get_policy_output_length() into get_nb_policy_values() Score of ClassicAra 0.9.6 - Refactor (Threads 2, ChildThreads 4, BSize 64) vs ClassicAra 0.9.5.post Master (Threads 2, BSize 16): 64 - 26 - 72 [0.617] Elo difference: 83.0 +/- 40.2, LOS: 100.0 %, DrawRatio: 44.4 % 162 of 1000 games finished.
added another test case for first_and_second_max()
QueensGambit
added a commit
that referenced
this pull request
Nov 1, 2021
implemented reset_stats(), get_tb_hits(), get_avg_depth(), get_max_depth() re-added get_policy_output_length() fixed logging.info() problem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds the option to allocate multiple threads for a single mini-batch.
The new coresponding UCI-option is called ChildThreads (default: 4) and allows using higher batch sizes more effectively.
It also adds the option to distribute multiple visits in a single select statement for future usage.
Performance