Tag: Threading Building Blocks
-
Embarrassingly parallel solutions
Calculating the Mandelbrot set (which I covered in my previous post) lends itself to parallel processing. The value for each pixel is not dependant on the value of other pixels, and is controlled by the iterative algorithm with a few parameters that are common to all pixels right from the start. This type of parallelism…
