Difference between revisions of "Algorithmic skeleton"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "In computing, '''algorithmic skeletons''' (a.k.a. '''Parallelism Patterns''') are a high-level parallel programming model for parallel and distributed computing. == Descr...")
 
(External links)
 
Line 18: Line 18:
  
  
[[Category:Algorithm]]
+
[[Category:Algorithms]]
 
[[Category:Computer programming]]
 
[[Category:Computer programming]]
 
[[Category:Software engineering]]
 
[[Category:Software engineering]]

Latest revision as of 07:05, 27 May 2016

In computing, algorithmic skeletons (a.k.a. Parallelism Patterns) are a high-level parallel programming model for parallel and distributed computing.

Description

Algorithmic skeletons take advantage of common programming patterns to hide the complexity of parallel and distributed applications.

Starting from a basic set of patterns (skeletons), more complex patterns can be built by combining the basic ones.

External links