Difference between revisions of "SMT"

From RCS Wiki
Jump to navigation Jump to search
(Created page with "Simultaneous Multi-Threading (SMT) allows for maximally efficient use of execution blocks inside a given core for workloads with more than one thread or process. It works by...")
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Simultaneous Multi-Threading (SMT) allows for maximally efficient use of execution blocks inside a given core for workloads with more than one thread or process.  It works by dynamically scheduling each thread to execute on internal resources when the other threads running on the same core would otherwise leave those resources idle, increasing overall processor resource utilization and therefore overall processor speed.
+
{{Glossary
 +
  |name=Simultaneous Multi-Threading
 +
  |abbr=SMT}} Simultaneous Multi-Threading (SMT) allows for maximally efficient use of execution blocks inside a given core for workloads with more than one thread or process.  It works by dynamically scheduling each thread to execute on internal resources when the other threads running on the same core would otherwise leave those resources idle, increasing overall processor resource utilization and therefore overall system throughput.
  
 
In effect, SMT allows programs that would otherwise be unable to saturate a core (due to internal barriers or inefficient coding) to be combined in order to saturate the core's computing resources.  As such, it is mainly useful for compute-heavy tasks that do not already saturate other key metrics of the processor, such as cache bandwidth.
 
In effect, SMT allows programs that would otherwise be unable to saturate a core (due to internal barriers or inefficient coding) to be combined in order to saturate the core's computing resources.  As such, it is mainly useful for compute-heavy tasks that do not already saturate other key metrics of the processor, such as cache bandwidth.
  
[https://en.wikipedia.org/wiki/Simultaneous_multithreading Wikipedia has an excellent article on SMT] for those wishing to know more about how it works.
+
[[Wikipedia:Simultaneous multithreading|Wikipedia has an excellent article on SMT]] for those wishing to know more about how it works.

Latest revision as of 13:05, 19 December 2017

Simultaneous Multi-Threading (SMT): Simultaneous Multi-Threading (SMT) allows for maximally efficient use of execution blocks inside a given core for workloads with more than one thread or process. It works by dynamically scheduling each thread to execute on internal resources when the other threads running on the same core would otherwise leave those resources idle, increasing overall processor resource utilization and therefore overall system throughput.

In effect, SMT allows programs that would otherwise be unable to saturate a core (due to internal barriers or inefficient coding) to be combined in order to saturate the core's computing resources. As such, it is mainly useful for compute-heavy tasks that do not already saturate other key metrics of the processor, such as cache bandwidth.

Wikipedia has an excellent article on SMT for those wishing to know more about how it works.