Showing category results for .NET Parallel Programming

Mar 2, 2010
Post comments count0
Post likes count0

FAQ :: Parallel.ForEach and non-generic collections?

Danny Shih

.NET 2.0 introduced Generics to allow enhanced code reusability and type safety.  Since then, generic collections (IEnumerable<T>, List<T>, Dictionary<T>, etc.) have become standard and are recommended over their non-generic counterparts (IEnumerable, ArrayList, HashTable, etc.).  As a result, Parallel.ForEach only suppo...

.NET Parallel Programming
Feb 15, 2010
Post comments count0
Post likes count0

Parallel patterns in Visual Basic

Stephen Toub - MSFT

I previously posted in November about a paper I'd written on patterns for parallel programming.  The original paper had over 200 snippets of C# code to demonstrate and exemplify the ideas being discussed.  Due to popular demand (and in honor of the many Visual Basic MVPs on campus this week for the MVP Summit), we've now posted another ve...

.NET Parallel Programming
Feb 13, 2010
Post comments count0
Post likes count0

Want to work on Parallel Computing?

Stephen Toub - MSFT

We’re hiring! If you're reading this post, you most likely have an interest in parallel or distributed computing, writing concurrent software, and the like.  Take that interest a step further, and help us make the manycore era a successful reality by coming to work on the Parallel Computing Platform team at Microsoft.We currently have se...

.NET Parallel Programming
Feb 11, 2010
Post comments count0
Post likes count0

FAQ :: Which .NET language is best for parallelism?

Danny Shih

The new parallelization support in the .NET Framework 4 is implemented purely in libraries and the runtime and does not require special compiler support.  Therefore, it is available to all compliant .NET languages.  This includes all of the managed languages that ship as part of Visual Studio 2010 (Visual C#, Visual Basic, Visual F#, and ...

.NET Parallel Programming
Feb 10, 2010
Post comments count0
Post likes count0

F# PowerPack supports PLINQ

Stephen Toub - MSFT

The F# team has released the F# PowerPack for download on CodePlex, and we're very excited that the PowerPack now has direct support for PLINQ.  From the CodePlex site: F# Parallel LINQ IntegrationFSharp.PowerPack.Parallel.dll provides an F#-style API for parallel operations on sequences that are part of .NET 4.0 as System.Linq.ParallelEnumera...

.NET Parallel Programming
Feb 10, 2010
Post comments count0
Post likes count0

“Parallelism in .NET” Series by Reed Copsey, Jr.

Igor Ostrovsky - MSFT

Reed Copsey, Jr. has been writing a great series of articles on parallelism with the .NET Framework 4. The articles provide the insights of an expert developer who has been using parallelism with .NET to speed up real-world programs. Recommended reading.Parallelism in .NETIntroductionPart 1, Decomposition Par...

.NET Parallel Programming
Feb 9, 2010
Post comments count0
Post likes count0

Maintaining a Consistent Application State with TPL

Zlatko Michailov - MSFT

The aim of this post is to help developers writing applications in which operations may need to be performed and then later undone due to a subsequent failure. It shows a pattern for how to maintain such a consistent application state by utilizing functionality from the Task Parallel Library (TPL) in the .NET Framework 4. For the purposes of this ...

.NET Parallel Programming
Feb 8, 2010
Post comments count0
Post likes count0

Using Parallel Extensions for .NET 4 in ASP.NET apps

poojanagpal

ASP.NET applications already get a lot of concurrency for free. The .NET Framework load balances incoming requests among ThreadPool worker threads, striving for optimal use of available CPUs. As long as you minimize blocking in your ASP.NET page code, ASP.NET will process requests concurrently. In most cases, and in particular for Web applications ...

.NET Parallel Programming
Feb 8, 2010
Post comments count0
Post likes count0

Gallery of Processor Cache Effects

Stephen Toub - MSFT

Igor Ostrovsky is a developer on the Parallel Extensions team.  On his blog, he's documented a great set of examples for how caches can affect application performance; this is important to think through when writing parallel applications, but as Igor demonstrates, it applies equally to serial applications.  Check out his post.

.NET Parallel Programming
Feb 7, 2010
Post comments count0
Post likes count0

Are you using Parallel Extensions? We’d love to know.

Stephen Toub - MSFT

Are you using Parallel LINQ (PLINQ), the Task Parallel Library (TPL), or any of the new coordination and synchronization primitives in .NET 4 (or in the Parallel Extensions June 2008 CTP or with the recent Reactive Extensions release)?  Are you planning to use or are you already using this support in a production application or libra...

.NET Parallel Programming