-
i am trying to find the algorithm that split alphabeta search function for multithreading i find two algorithm : 1-Young Brothers Wait Concept how stockfish split algorithm for multithreading ? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
... Notably Stockfish 7, released in January 2016, switched from YBW to lazy SMP. |
Beta Was this translation helpful? Give feedback.
-
This is my alpha_beta function code , can you explain exactly how to split this function via lazy_SMP ?
please send exactly lazy_SMP algorithm code ,thanks |
Beta Was this translation helpful? Give feedback.
-
I'm too lazy to send you 'exactly lazy_SMP algorithm code' ;-) It's OPEN SOURCE! Have fun! |
Beta Was this translation helpful? Give feedback.
-
lazy_SMP algorithm is very difficult , i cant find the algorithm from stockfish source @vondele say the multithreading doesn't reach faster , is this true ? Adding more threads doesn't reach the same answer faster, it finds a better move in (roughly) the same time. Originally posted by @vondele in #3987 (comment) |
Beta Was this translation helpful? Give feedback.
This is my alpha_beta function code , can you explain exactly how to split this function via lazy_SMP ?
please send exactly lazy_SMP algorithm…