Parallel task in C# 4.0

来源:http://www.dotnetjalps.com/2012/12/Parallel-task-with-task-parallel-library-in-Csharp.html

In today’s computing world  is all about Parallel processing. You have multicore CPU where you have different core doing different work parallel or its doing same task parallel. For example I am having 4-core CPU as follows. So the code that I write should take care of this. C# does provide that kind of facility to write code for multi core CPU with task parallel library. We will explore that in this post.


Now Let’s write a program that will have some will have some CPU intensive code that will take some time to complete work.  First we will use normal way of calling this task and measure the time and then we will use Task Parallel library feature of C# 4.0. Following is a code for that.

using System;
using System.Threading;
using System.Diagnostics;
 
namespaceParrallelTask
{
    classProgram
    {
        staticvoid Main(string[] args)
        {
            Stopwatch stopWatch =new Stopwatch();
            stopWatch.Start();
            DoSomeWork();
            DoSomework2();
            stopWatch.Stop();
            Console.WriteLine("Time consumed: {0}", stopWatch.Elapsed);
        }
 
        publicstatic voidDoSomeWork()
        {
            Thread.Sleep(1000);
            Console.WriteLine("Work completed");
        }
        publicstatic voidDoSomework2()
        {
            Thread.Sleep(1000);
            Console.WriteLine("Work completed2");
        }
 
    }
}
As you can see in above code that we have two cpu intensive method DoSomeWork and DoSomeWork2 and we have called it one by one. Now let’s run the console application.



Here you can see that it has taken almost 2 seconds to complete this task. To use parallel task library we have to useSystem.Threading.Tasks name space. So I have changed the above code like following to get advantage of Parallel Task.

using System;
using System.Threading;
using System.Diagnostics;
using System.Threading.Tasks;
 
 
namespaceParrallelTask
{
    classProgram
    {
        staticvoid Main(string[] args)
        {
            Stopwatch stopWatch =new Stopwatch();
            stopWatch.Start();
            Parallel.Invoke(
                  newAction(DoSomeWork),
                  newAction(DoSomework2)
                );
            stopWatch.Stop();
            Console.WriteLine("Time consumed: {0}", stopWatch.Elapsed);
        }
 
        publicstatic voidDoSomeWork()
        {
            Thread.Sleep(1000);
            Console.WriteLine("Work completed");
        }
        publicstatic voidDoSomework2()
        {
            Thread.Sleep(1000);
            Console.WriteLine("Work completed2");
        }
 
    }
}
So here you can see I have invoked two CPU consuming task parallel invoke and usedaction delegate to call that. Now let’s run that and see how much time it will take.


Here you can see it has taken 1 second to complete same task as it has completed this tasks parallel. Hope you like it. Stay tuned for more.


-------------------备注--------------------

执行并行任务也可以用Task,与Paralle.Invoke的区别是,Task创建的任务是异步执行,不等待任务执行完毕就返回的,例如下面执行后显示Time consumed: 00:00:00.0008202。
Stopwatch stopWatch =new Stopwatch();  
stopWatch.Start();
Task t = new Task(DoSomeWork);
t.Start();
Task.Factory.StartNew(DoSomework2);   
stopWatch.Stop();  
Console.WriteLine("Time consumed: {0}", stopWatch.Elapsed);  

Task的返回类型代码:
Task<int> t = new Task<int>(DoSomeWork);
int result = t.Result;
//......
public int DoSomeWork()
{            
   return 10;          
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值