Jump to content

Embarrassingly parallel problem

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by CesarB (talk | contribs) at 16:17, 26 May 2005 ({{compu-sci-stub}}; {{merge|Embarrassingly parallel}}). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

An embarrassingly parallel problem is a parallel computing problem that can easily, or very obviously, be split up into parts that can be computed in parallel. What these problems generally have in common is that each step can be computed independently from every other step, thus each step could be made to run on a separate processor to achieve quicker results. Examples of embarrassingly parallel problems include the computation of the Mandelbrot set, brute force key searches in cryptography, game tree traversal in Artificial intelligence, and ray tracing.

See also