I changed the work-sharing approach to Lazy SMP in EXchess to be closer to the ABDADA model after Daniel Shawul's posts about his tests on the subject[6]. However, I didn't want to use a hash table to keep a counter for the threads working on a given position. My hash table already had a 16 byte long entry, so I didn't want to expand it, and I also didn't like the idea of having to make each move before seeing whether another thread was searching it.
So as an alternative to the hash table, I made a simple work sharing data structure. In the end, it was just a single hash key for a position which is OR'd with the move being searched and the depth of the search. I use this to keep track of the move being searched at each ply of the tree for a given thread. Then, before I search a move at a given ply, I can just check the same ply in the other threads to see that the move is not already being worked on at that depth. If it is, then the move get placed at the end of the move list to be searched last. This doesn't allow for transpositions , but I expected the most likely work collisions to be as the threads are walking the PV where they will initially all be the same. Indeed, this scheme only helps in the PV, and if I check for work sharing in non-PV nodes, it only slows things down a bit.
My previous Lazy SMP work sharing was just to alternate moves (odd-even) in the root node for the odd-even threads. The above approach is about 10% faster than my previous scheme, and I get a time-to-depth improvement of roughly 1.65 for 2 threads compared to 1 thread and roughly 2.5 for 4 threads compared to 1 thread. Maybe not quite as good as ABDADA with a hash table counter, but not too bad for the simplicity.
Table of Contents
EXchess, (Experimental Chess Program)
a Chess Engine Communication Protocol compatible experimental open source chess engine released under the GNU Public License, written by Daniel Homan in C++, optionally using an own GUI based on the Fast Light Tool Kit (FLTK).
Board Representation
EXchess utilizes an 8x8 Board and piece lists as demonstrated in its move generation routine [1] :Search
EXchess uses advanced search algorithms including principle variation search , null move, null move verification, dynamic search extensions, futility pruning, hash tables, history tables, quiescence search, and a material swap function [2] [3].TD-leaf
EXchess applies evaluation learning using the Temporal Difference Learning (TD-leaf) [4].Lazy SMP
Daniel Homan in July 2013 on his Lazy SMP implementation and work sharing [5]:So as an alternative to the hash table, I made a simple work sharing data structure. In the end, it was just a single hash key for a position which is OR'd with the move being searched and the depth of the search. I use this to keep track of the move being searched at each ply of the tree for a given thread. Then, before I search a move at a given ply, I can just check the same ply in the other threads to see that the move is not already being worked on at that depth. If it is, then the move get placed at the end of the move list to be searched last. This doesn't allow for transpositions , but I expected the most likely work collisions to be as the threads are walking the PV where they will initially all be the same. Indeed, this scheme only helps in the PV, and if I check for work sharing in non-PV nodes, it only slows things down a bit.
My previous Lazy SMP work sharing was just to alternate moves (odd-even) in the root node for the odd-even threads. The above approach is about 10% faster than my previous scheme, and I get a time-to-depth improvement of roughly 1.65 for 2 threads compared to 1 thread and roughly 2.5 for 4 threads compared to 1 thread. Maybe not quite as good as ABDADA with a hash table counter, but not too bad for the simplicity.
Forum Posts
1998 ...
2000 ...
2005 ...
2010 ...
- EXchess v6.01 by Daniel Homan, CCC, December 29, 2011
2012- EXchess v6.10 released by Daniel Homan, CCC, January 29, 2012 » CLOP
- EXchess v6.50 released by Daniel Homan, CCC, August 19, 2012
- EXchess v6.70 released by Daniel Homan, CCC, December 20, 2012
2013- Lazy SMP, part 2 by Daniel Homan, CCC, January 12, 2013 » Lazy SMP
- EXchess v7.01 Released by Daniel Homan, CCC, March 10, 2013
- EXchess v7.02 released by Daniel Homan, CCC, March 16, 2013
- EXchess v7.03 released (bugfix + speed improved version by Daniel Homan, CCC, March 29, 2013
- EXchess v7.11 released by Daniel Homan, CCC, June 27, 2013
- Lazy SMP and Work Sharing by Daniel Homan, CCC, July 03, 2013 » Lazy SMP
- EXchess v7.17 released by Daniel Homan, CCC, September 14, 2013
20142015 ...
- EXchess v7.71 released by Daniel Homan, CCC, May 29, 2015
- EXchess v7.88 Released by Daniel Homan, CCC, December 30, 2015
2016- EXchess v7.91 released by Daniel Homan, CCC, May 10, 2016
- EXchess v7.92 and AMD Processors by Daniel Homan, CCC, October 08, 2016
2017EXchess v7.92 released by Daniel Homan, CCC, May 11, 2016
External Links
References
What links here?
Up one Level