Parallel Programming in the .NET Framework

Many personal computers and workstations have two or four cores (that is, CPUs) that enable multiple threads to be executed simultaneously. Computers in the near future are expected to have significantly more cores. To take advantage of the hardware of today and tomorrow, you can parallelize your code to distribute work across multiple processors. In the past, parallelization required low-level manipulation of threads and locks. Visual Studio 2010 and the .NET Framework 4 enhance support for parallel programming by providing a new runtime, new class library types, and new diagnostic tools. These features simplify parallel development so that you can write efficient, fine-grained, and scalable parallel code in a natural idiom without having to work directly with threads or the thread pool. The following illustration provides a high-level overview of the parallel programming architecture in the .NET Framework 4.

.NET Parallel Programming Architecture

Technology

Description

Task Parallel Library

Provides documentation for the System.Threading.Tasks.Parallel class, which includes parallel versions of For and ForEach loops, and also for the System.Threading.Tasks.Task class, which represents the preferred way to express asynchronous operations.

Parallel LINQ (PLINQ)

A parallel implementation of LINQ to Objects that significantly improves performance in many scenarios.

Data Structures for Parallel Programming

Provides links to documentation for thread-safe collection classes, lightweight synchronization types, and types for lazy initialization.

Parallel Diagnostic Tools

Provides links to documentation for Visual Studio debugger windows for tasks and parallel stacks, and the Concurrency Visualizer, which consists of a set of views in the Visual Studio Application Lifecycle Management Profiler that you can use to debug and to tune the performance of parallel code.

Custom Partitioners for PLINQ and TPL

Describes how partitioners work and how to configure the default partitioners or create a new partitioner.

Task Factories

Describes the role of the System.Threading.Tasks.TaskFactory class.

Task Schedulers

Describes how schedulers work and how the default schedulers may be configured.

Lambda Expressions in PLINQ and TPL

Provides a brief overview of lambda expressions in C# and Visual Basic, and shows how they are used in PLINQ and the Task Parallel Library.

For Further Reading (Parallel Programming)

Provides links to additional documentation and sample resources for parallel programming in the .NET Framework.

.NET Framework Advanced Development

Top level node for advanced topics such as threading and parallel programming.

See Also

Other Resources

Patterns for Parallel Programming: Understanding and Applying Parallel Patterns with the .NET Framework 4