.NET 4 , Parallel Patterns , Geometric Decomposition, How to parallelise the processing of an array

Share:

Listens: 0

Rock Solid Knowledge Screencasts

Technology


Andy introduces a Parallel Pattern called Geometric Decomposition utilising .NET 4 parallel framework. In this screen cast he will show how an array can be broken down into a series of smaller data pieces having many identical tasks running in parallel work on their own specific piece of the data. Whilst there are scenarios were each task can run in isolation its often found that these various tasks need to co-operate around the edges of their specific pieces. Andy will demonstrate two ways of solving this problem. One utilising pure Parallel.ForEach and another utilising the new Barrier type.