Difference between revisions of "Slicer3:ThreadingToolKit"

From NAMIC Wiki
Jump to: navigation, search
Line 1: Line 1:
=== Purpose ===
+
<big>'''Note:''' We are migrating this content to the slicer.org domain - <font color="orange">The newer page is [http://www.slicer.org/slicerWiki/index.php/Slicer3:ThreadingToolKit  here]</font></big>
 
 
Just as the [[Slicer3:Execution_Model| Execution Model]] has enabled algorithm developers to rapidly integrate their software into Slicer3, the purpose of the Threading ToolKit (TTK) is to enable algorithm and application developers to easily take advantage of multi core threaded environments.
 
 
 
=== Goals ===
 
 
 
* Provide building blocks inspired by [http://www.openmp.org OpenMP], [http://java.sun.com/docs/books/tutorial/essential/concurrency/index.html Java's concurrency model], and [http://osstbb.intel.com/ Intel's Threading Building Blocks].
 
* Provide a cross platform C++ implementation for
 
** POSIX pthreads
 
** Windows threading
 
** Single threaded implementation
 
* Attempt a header only implementation, to minimize developer overhead
 
 
 
=== Design thoughts ===
 
 
 
==== Thread Pool ====
 
Provide a thread pool class.  The thread pool would dynamically allocate threads to an instantiation specified limit, allow threads to be requested in blocking and non-blocking fashion and maintain thread state.
 
 
 
==== Tasks ====
 
Tasks are concurrent work units.  Each Task may be executed concurrently and may be grouped.  A process may wait for all tasks to be completed, or request asynchronous notification.
 
 
 
==== Parallel Loops ====
 
Inspired by TBB, a parallel loop would automatically break a large number of iterations across threads in a ''scatter-gather'' pattern.  An object used for looping would only need to have a particular method, or may need to be a particular subclass.
 
 
 
== Related Links ==
 
* http://www.dmoz.org/Computers/Programming/Threads/
 

Revision as of 17:51, 20 May 2008

Home < Slicer3:ThreadingToolKit

Note: We are migrating this content to the slicer.org domain - The newer page is here