Difference between revisions of "Thread"

From Chessprogramming wiki
Jump to: navigation, search
(Created page with "'''Home * Programming * Thread''' FILE:Multithreaded process.svg|border|right|thumb| Two threads on a single processor <ref>[https://en.wikipedia.org/wiki...")
 
Line 44: Line 44:
 
==2005 ...==
 
==2005 ...==
 
* [http://www.stmintz.com/ccc/index.php?id=435053 POSIX threads] by [[Steven Edwards]], [[CCC]], July 05, 2005
 
* [http://www.stmintz.com/ccc/index.php?id=435053 POSIX threads] by [[Steven Edwards]], [[CCC]], July 05, 2005
* [http://www.open-aurec.com/wbforum/viewtopic.php?f=4&t=5603 Threading issue under Polyglot] by [[Nathan Thom]], [[Computer Chess Forums|Winboard Forum]], September 18, 2006 » [[Polyglot]]
+
* [http://www.open-aurec.com/wbforum/viewtopic.php?f=4&t=5603 Threading issue under Polyglot] by [[Nathan Thom]], [[Computer Chess Forums|Winboard Forum]], September 18, 2006 » [[PolyGlot]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=14114 pthread weirdness] by [[James Swafford]], [[CCC]], May 29, 2007
 
* [http://www.talkchess.com/forum/viewtopic.php?t=14114 pthread weirdness] by [[James Swafford]], [[CCC]], May 29, 2007
 
* [http://www.talkchess.com/forum/viewtopic.php?t=15662 multithreading questions] by [[Martin Fierz]], [[CCC]], August 08, 2007
 
* [http://www.talkchess.com/forum/viewtopic.php?t=15662 multithreading questions] by [[Martin Fierz]], [[CCC]], August 08, 2007

Revision as of 13:05, 25 June 2018

Home * Programming * Thread

Two threads on a single processor [1]

A Thread is the smallest unit of processing that can be scheduled by an operating system. One or multiple threads can exist within the same process to share its resources such as memory. Modern operating systems support both time-sliced and multiprocessor threading within a process scheduler. Some operating systems such as Windows distinguish worker threads from GUI-threads, which incorporate a message loop, able to receive messages from worker threads. Threads share global data of the process, but use disjoint stacks for local variables.

Chess programs using threads for a parallel search have to deal with synchronization issues, if multiple threads read and write none atomic global data simultaneously, requiring multiple read and/or write cycles. A good step to make a program thread safe, is to avoid global variables and to keep board and game states as locals on the stack. To minimize context switching, chess programs often implement a thread pooling pattern along with explicitly or implicitly controlling processor affinity, where the number of threads of the chess program is less or equal to the number of physical processor cores. Threads are further versatile to control standard input inside an engine.

See also

Publications

1994 ...

2000 ...

2010 ...

Forum Posts

1999

2000 ...

2005 ...

2010 ...

2011

2012

2013

2014

2015 ...

Explanation for non-expert? by Louis Zulli, CCC, February 16, 2015 » Stockfish

2016

Re: Baffling multithreading scaling behavior by Robert Hyatt, CCC, September 07, 2016
Re: Lazy SMP >4 Thread Slowdown by Ronald de Man, CCC, November 29, 2017

External Links

Thread

Multithreading

Posix

Windows

Creating Threads

C++

Java

GPU

References

Up one Level