Understanding Parallel Programming

The hardware industry, over the last few years,  has been rapidly shifting towards multiple-processor core technology. Despite having multiple core in your machine you cannot expect your sequential program to run faster in that machine. For that purpose `Parallel programming’ is required which can efficiently use all the cores and execute faster.

 Feature Areas:

  • Task Parallel Library(TPL)
  • Parallel LINQ

 Task Parallel Library:

The easiest way to use parallel library is to use the same in parallel loops. If you have a loop where every iteration is doing something expensive and loop iterations are independent, you can then just launch different iterations in parallel.

The below block shows the sequential iterations:

Data Row

Which can be paralleled by using TPL by following code.

Parallel

Parallel LINQ

Parallel LINQ(PLINQ) is a query execution engine that accepts only LINQ-to-Objects or LINQ-to-XML query and automatically utilizes multiple processor or cores for execution when they are available. With PLINQ you can transform your LINQ queries to parallel version by using the AsParallel extension method as shown below.

Parallel Programming

Lets take Ray-tracer algorithm sample to render image with both Sequential and Parallel programming and will compare the execution time in both scenarios.

Img1 shows image rendering through Sequential program and the bottom right of img1 shows the time taken to execute.

Parallel Programming

Img1: Rendering Image through Sequential Program

Parallel Program

Img2:Rendering Image through Parallel Program

The img2 shows Image rendering through parallel programming.

It is clear from the above sample images that Parallel execution is 1.5 seconds faster than the Sequential rendering.

Lets see how the processor core has been consumed in both scenarios using performance monitor tool.

Performance Monitor

In the sequential programming graph we can observe only processor core one, highlighted with red mark, has been utilizing more and rest are least utilized.

Parallel Programming Graph

Parallel Programming Graph

 In the above  Parallel programming Graph we can see all the core of the processor are equally utilized.

 Conclusion

There are many ways to create a parallel executing program in C#. With multi-core processor there’s no excuse for creating a single threaded programs and penalize your users with unneeded delays.

Author

  • Ajay K R

    Ajay works as Module Lead with Trigent Software. He has nearly 7 years of experience in ASP .NET, SQL, Oracle and over a year's experience in MS Dynamics CRM. Ajay enjoys working on new technologies.