Showing results for June 2010 - .NET Parallel Programming

Jun 30, 2010
0
0

PLINQ and Office Add-ins

Igor Ostrovsky - MSFT
Igor Ostrovsky - MSFT

Many different kinds of applications can benefit from multi-core parallelism, including add-ins to Microsoft Office. Donny Amalo wrote a paper, PLINQ and Office Add-ins, where he demonstrates how to implement two parallel Microsoft Office add-ins using PLINQ: (This paper and many more are available through the Parallel Computing Developer C...

Parallel ExtensionsTask Parallel Library.NET 4
Jun 28, 2010
0
0

Integrating Parallelism with Windows Workflow Foundation

Igor Ostrovsky - MSFT
Igor Ostrovsky - MSFT

Despite the similarity in naming, the System.Threading.Tasks.Parallel class and the System.Activities.Statements.Parallel* activities in WF4 are largely orthogonal in the scenarios they address. However, WF4 activities and the new parallel programming types in .NET 4 can be used together to great advantage.Ling Wo and Cristina Manu wrote a pap...

Parallel ExtensionsTask Parallel Library.NET 4
Jun 25, 2010
0
0

Concurrency Visualizer: A Case Study

Igor Ostrovsky - MSFT
Igor Ostrovsky - MSFT

Boby George and Pooja Nagpal - testers on the Parallel Computing Platform team responsible for the parallel programming support in .NET 4- built a parallel spell checker algorithm and used the Concurrency Visualizer to analyze and improve the performance and scalability of their implementation.Optimizing Parallel Applications Using Concurrency...

Parallel Extensions.NET 4Visual Studio 2010
Jun 21, 2010
0
0

PLINQ’s Ordering Model

Igor Ostrovsky - MSFT
Igor Ostrovsky - MSFT

In order to execute parallel queries as efficiently as possible, Parallel LINQ (PLINQ) treats ordering as optional. By default, PLINQ considers sequences to be unordered, unless the user explicitly opts into maintaining ordering using either the AsOrdered or the OrderBy operator.Roy Patrick Tan wrote a detailed article that expl...

Parallel Extensions.NET 4PLINQ
Jun 13, 2010
1
0

“Task.Factory.StartNew” vs “new Task(…).Start”

Stephen Toub - MSFT
Stephen Toub - MSFT

With TPL, there are several ways to create and start a new task.  One way is to use the constructor for task followed by a call to the Start method, e.g.        new Task(...).Start();and the other is by using the StartNew method of TaskFactory, e.g.        Task.Factory.StartNew(....

Parallel ExtensionsTask Parallel Library
Jun 13, 2010
0
0

Upcoming NYC user group presentation on Parallel Programming

Stephen Toub - MSFT
Stephen Toub - MSFT

I'm going to be in Manhattan on June 29th, and while there I'll be presenting to a joint meeting of the NYC .NET Developer's Group and the New York ALT.NET Group on parallel programming with .NET 4 and Visual Studio 2010.  Details are available here, and I'll look forward to seeing you there!Thanks!Stephen

Parallel ExtensionsVisual Studio 2010Talks
Jun 6, 2010
0
0

Parallel Computing at TechEd North America 2010

Stephen Toub - MSFT
Stephen Toub - MSFT

Are you attending TechEd in New Orleans this week?  If so, check out the multitude of parallel computing-related breakout sessions, including: The first two (DEV314 and DEV317) are being presented by Huseyin Yildiz, one of the primary developers on the Parallel Computing Platform team responsible for the Task Parallel Library.En...

Parallel ExtensionsVisual Studio 2010Talks