1 |
See overview discussion in Parallel Computing Works
|
2 |
Synchronous: Data Parallel Tightly coupled and software needs to exploit features of problem structure to get good performance. Comparatively easy as different data elements are essentially identical.
|
3 |
Loosely Synchronous:
-
As above but data elements are not identical. Still parallelizes due to macroscopic time synchronization.
|
4 |
Asynchronous:
-
Functional (or data) parallelism that is irregular in space and time. Often loosely coupled and so need not worry about optimal decompositions to minimize communication. Hard to parallelize (massively) unless ....
|
5 |
Embarrassingly parallel:
-
Essentially independent execution of disconnected components. (can involve reductions)
|
6 |
Metaproblems
-
Asynchronous collection of (loosely) synchronous components where these programs themselves can be parallelized
|