Showing results for PLINQ - .NET Parallel Programming

Feb 4, 2010
0
0

DryadLinq now available also for non-academic use

Massimo Mascaro
Massimo Mascaro

Several months ago, Microsoft announced for academic customers the availability of DryadLINQ.  DryadLINQ is a LINQ provider developed by Microsoft Research that enables  .NET developers to use the LINQ programming model for writing distributed queries and computations against a cluster of computers using Windows HPC Server. DryadLINQ enab...

PLINQFeedback Requested
Jan 5, 2010
0
0

FAQ :: Why is the speedup not X on my X-way machine?

Danny Shih
Danny Shih

We’ll be regularly posting answers to frequently asked questions that we’ve gotten on the forum, internal email lists, etc.  Here’s the first – enjoy! Why is the speedup not X on my X-way machine?  Or, why does my parallel code run slower?  Less than ideal speedup can typically be attributed to two things: 1.    &...

Parallel ExtensionsTask Parallel Library.NET 4
Dec 9, 2009
0
0

A Tour Through the Parallel Programming Samples for .NET 4

Stephen Toub - MSFT
Stephen Toub - MSFT

On Code Gallery, we have a plethora of samples that highlight aspects of the .NET Framework 4 that help with writing scalable and efficient parallel applications.  This post examines each of those samples, providing an overview of what each provides.

Parallel ExtensionsTask Parallel Library.NET 4
Nov 19, 2009
0
0

Reactive Extensions and Parallel Extensions

Stephen Toub - MSFT
Stephen Toub - MSFT

It’s awesome to see the Reactive Extensions to .NET (Rx) live on the DevLabs site.  If you haven’t checked out this exciting project, we urge you to do so.  Not only is it cool and useful technology, but the download includes a back ported (and unsupported) release of Parallel Extensions for the .NET Framework 3.5 in the form ...

Parallel ExtensionsTask Parallel Library.NET 4
Nov 11, 2009
0
0

Scaling out PLINQ: DryadLINQ at PDC09 and Supercomputing09

Stephen Toub - MSFT
Stephen Toub - MSFT

PLINQ enables developers to scale up computations in order to leverage the multiple cores available in modern hardware. For many problem domains, this is quite useful and sufficient. What happens, however, when a workload being processed is so big that even a manycore machine is insufficient to adequately handle the load? This can be the case with ...

PLINQTalks
Nov 5, 2009
0
0

What’s New in Beta 2 for PLINQ

essey
essey

Included in the .NET 4 Framework Beta 2 is a more robust and faster version of PLINQ.  Between B1 and B2, PLINQ changes have mainly been under the covers, so hopefully no need to rewrite any of your applications to see the improvements.  1.       Many improvements to performance and scalability2.  &...

Parallel Extensions.NET 4PLINQ
Nov 1, 2009
0
0

Slides from Parallelism Tour

Stephen Toub - MSFT
Stephen Toub - MSFT

Last week, I had the privilege of touring around Tennessee, Kentucky, Ohio, and Michigan, speaking about the new parallel computing support in Visual Studio 2010 and the .NET Framework 4.  Many folks I spoke with were interested in getting a copy of the slide deck I used, so I’ve attached it to this blog post.  Enjoy! Toub_ParallelismTour...

Parallel ExtensionsTask Parallel Library.NET 4
Oct 12, 2009
0
0

Parallelized Map and Filter Operations

Stephen Toub - MSFT
Stephen Toub - MSFT

Common operations like map and filter are available in parallelized form through PLINQ, though the names differ.  A map can be achieved with PLINQ’s Select operator, and a filter with PLINQ’s Where operator.For example, I could implement a ParallelMap operation that takes in one array and returns another as follows: public static...

Parallel ExtensionsTask Parallel Library.NET 4
Aug 4, 2009
0
0

Parallel Extensions and I/O

Danny Shih
Danny Shih

In this post, we’ll investigate some ways that Parallel Extensions can be used to introduce parallelism and asynchrony to I/O scenarios. Here’s a simple scenario.  I want to retrieve data from a number of web resources. static string[] Resources = new string[] {     "http://www.microsoft.com", "http://www.msdn.com",   ...

Task Parallel Library.NET 4PLINQ
Jun 22, 2009
0
0

Cancellation in Parallel Extensions

Mike Liddell
Mike Liddell

One of the great features that crosses all of Parallel Extensions types is a consistent approach to cancellation (see https://blogs.msdn.com/pfxteam/archive/2009/05/22/9635790.aspx). In this post we explore some of the ways cancellation is used in Parallel Extensions and explain the guidance we developed. The new cancellation system is a cooperativ...

Parallel ExtensionsTask Parallel Library.NET 4