Difference between revisions of "SMP"

From Chessprogramming wiki
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 69: Line 69:
 
* [http://www.talkchess.com/forum/viewtopic.php?t=55047 SMP: on same branch instead splitting?] by Frank Ludwig, [[CCC]], January 23, 2015 » [[Lazy SMP]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=55047 SMP: on same branch instead splitting?] by Frank Ludwig, [[CCC]], January 23, 2015 » [[Lazy SMP]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=55224 Some SMP measurements with Rookie v3] by [[Marcel van Kervinck]], [[CCC]], February 05, 2015
 
* [http://www.talkchess.com/forum/viewtopic.php?t=55224 Some SMP measurements with Rookie v3] by [[Marcel van Kervinck]], [[CCC]], February 05, 2015
* [http://www.talkchess.com/forum/viewtopic.php?t=55779 SMP questions] by Patrice Duhamel, [[CCC]], March 25, 2015
+
* [http://www.talkchess.com/forum3/viewtopic.php?f=7&t=55779 SMP questions] by [[Patrice Duhamel]], [[CCC]], March 25, 2015 » [[Young Brothers Wait Concept]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=56920 Latest SMP update] by [[Robert Hyatt]], [[CCC]], July 09, 2015 » [[Crafty]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=56920 Latest SMP update] by [[Robert Hyatt]], [[CCC]], July 09, 2015 » [[Crafty]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=56937 Actual speedups from YBWC and ABDADA on 8+ core machines?] by [[Tom Kerrigan]], [[CCC]], July 10, 2015 » [[Young Brothers Wait Concept]], [[ABDADA]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=56937 Actual speedups from YBWC and ABDADA on 8+ core machines?] by [[Tom Kerrigan]], [[CCC]], July 10, 2015 » [[Young Brothers Wait Concept]], [[ABDADA]]
Line 90: Line 90:
 
* [http://wiki.osdev.org/Symmetric_Multiprocessing Symmetric Multiprocessing - OSDev Wiki]
 
* [http://wiki.osdev.org/Symmetric_Multiprocessing Symmetric Multiprocessing - OSDev Wiki]
 
* [http://www.tldp.org/LDP/lkmpg/2.4/html/c1294.htm Chapter 13. Symmetric Multi Processing] in [https://en.wikipedia.org/wiki/Peter_J._Salzman Peter Jay Salzman], [https://www.linkedin.com/in/ori-pomerantz-34a915 Ori Pomerantz] ('''2001'''). ''[http://www.tldp.org/LDP/lkmpg/2.4/html/book1.htm The Linux Kernel Module Programming Guide]''. » [[Linux]]
 
* [http://www.tldp.org/LDP/lkmpg/2.4/html/c1294.htm Chapter 13. Symmetric Multi Processing] in [https://en.wikipedia.org/wiki/Peter_J._Salzman Peter Jay Salzman], [https://www.linkedin.com/in/ori-pomerantz-34a915 Ori Pomerantz] ('''2001'''). ''[http://www.tldp.org/LDP/lkmpg/2.4/html/book1.htm The Linux Kernel Module Programming Guide]''. » [[Linux]]
* [[:Category:Björk|Björk]] - [https://en.wikipedia.org/wiki/Mutual_Core Mutual Core] (2011), [https://en.wikipedia.org/wiki/YouTube YouTube] Video
+
* [[:Category:Björk|Björk]] - [https://en.wikipedia.org/wiki/Mutual_Core Mutual Core] (2012), [https://en.wikipedia.org/wiki/YouTube YouTube] Video
 
: {{#evu:https://www.youtube.com/watch?v=-WnzRqCK6Fs|alignment=left|valignment=top}}
 
: {{#evu:https://www.youtube.com/watch?v=-WnzRqCK6Fs|alignment=left|valignment=top}}
  

Latest revision as of 11:29, 31 May 2021

Home * Hardware * Memory * SMP

Symmetric Multiprocessor System [1]

SMP, (Symmetric MultiProcessing)
a multiprocessing memory design where all processors compete for access to the centralized shared memory bus connected to the main memory as used in early microcomputer multiprocessor systems with two, four or even eight processors. SMP includes systems with CPUs implemented in separate chips, systems with CPUs implemented in the same chip (multi-core) and combinations (e.g. a system with 2 separate quad core chips, with a total of 8 physical CPUs) [2]. With increasing number of cores and processors bejoind 8 to 12 CPUs [3], SMP with its uniform memory access becomes more and more a bottleneck in scalability - more recent systems such as x86-64 with multiple cores use the NUMA (Non-uniform memory access) architecture instead. Nevertheless, the term SMP search has become synonym for parallel search using a shared hash table, also manifested in the term Lazy SMP.

See also

Publications

Forum Posts

1997 ...

2000 ...

2005 ...

Re: What is SMP? (NT) by Tord Romstad, CCC, February 23, 2006

2010

2015

2016

2017

External Links

Symmetric multiprocessor system from Wikipedia

References

Up one Level