Changes

Jump to: navigation, search

Parallel Search

506 bytes added, 18:34, 11 November 2021
no edit summary
''see Main page: [[Shared Hash Table]]''
This technique is a very simple approach to [[SMP]]. The implementation requires little more than starting additional processors. Processors are simply fed the root position at the beginning of the search, and each searches the same tree with the only communication being the [[Transposition Table|transposition table]]. The gains come from the effect of nondeterminism. Each processor will finish the various subtrees in varying amounts of time, and as the search continues, these effects grow making the search trees diverge. The speedup is then based on how many nodes the main processor is able to skip from transposition table entries. Many programs used this if a "quick and dirty" approach to SMP is needed. It had the reputation of little speedup on a mere 2 processors, and to scale quite badly after this.
<span id="Lazy"></span>
==Lazy SMP==
=Taxonomy=
Overview and taxonomy of parallel algorithms based on [[Alpha-Beta|alpha-beta]], given by [[Mark Brockington]], [[ICGA Journal#19_3|ICCA Journal, Vol. 19: No. 3]] in 1996 <ref>[[Mark Brockington]] ('''1996'''). ''A Taxonomy of Parallel Game-Tree Search Algorithms''. [[ICGA Journal#19_3|ICCA Journal, Vol. 19: No. 3]]</ref> <ref>[https://www.talkchess.com/forum3/viewtopic.php?f=7&t=78631 Research paper comparing various parallel search algorithms] by koedem, [[CCC]], November 10, 2021</ref>
{| class="wikitable"
|-
* [http://www.talkchess.com/forum/viewtopic.php?t=48612 use sleeping threads] by [[Don Dailey]], [[CCC]], July 10, 2013 » [[Stockfish]]
* [http://www.talkchess.com/forum/viewtopic.php?t=48752 Recursive DTS-like search algorithm] by [[Peter Österlund]], [[CCC]], July 24, 2013 » [[Texel]], [[Recursion]]
* [http://www.open-chess.org/viewtopic.php?f=5&t=2378 DTS-like SMP] by [[Vadim Demichev|ThinkingALot]], [[Computer Chess Forums|OpenChess Forum]], July 25, 2013 » [[Gull]]
* [http://www.talkchess.com/forum/viewtopic.php?t=48780 Time to depth measuring tool] by [[Peter Österlund]], [[CCC]], July 28, 2013 » [[Depth]]
* [http://www.talkchess.com/forum/viewtopic.php?t=49450 interesting SMP bug] by [[Robert Hyatt]], [[CCC]], September 24, 2013 » [[Crafty]]
* [http://www.talkchess.com/forum3/viewtopic.php?f=7&t=71115 OpenMP for chess programming] by BeyondCritics, [[CCC]], June 27, 2019
* [http://www.talkchess.com/forum3/viewtopic.php?f=7&t=71739 Multithreaded noob question] by [[Michael Sherwin]], [[CCC]], September 06, 2019
==2020 ...==
* [https://www.talkchess.com/forum3/viewtopic.php?f=7&t=75695 assembler for locking at AMD magny cours] by [[Vincent Diepeveen]], [[CCC]], November 06, 2020
* [https://www.talkchess.com/forum3/viewtopic.php?f=7&t=78631 Research paper comparing various parallel search algorithms] by koedem, [[CCC]], November 10, 2021
=External Links=

Navigation menu