Showing category results for .NET Parallel Programming

Mar 9, 2008
Post comments count0
Post likes count0

6th Annual Microsoft Financial Services Developer Conference

Stephen Toub - MSFT
Stephen Toub - MSFT

We'll be speaking this week in NYC about Parallel Extensions to the .NET Framework at the Microsoft Financial Services Developer Conference. "The 2008 Microsoft Financial Services Developer Conference will focus on providing developers and architects in Financial Services a clear roadmap of the Microsoft development platform with a focus on High Pe...

.NET Parallel Programming
Feb 29, 2008
Post comments count0
Post likes count0

Implementing the Asynchronous Programming Model with Future

Stephen Toub - MSFT
Stephen Toub - MSFT

One of our design goals for the Task Parallel Library is to integrate well into existing asynchronous mechanisms in the .NET Framework.  And one of the most common concurrency-related patterns in the .NET Framework is the Asynchronous Programming Model (APM), which typically manifests as a BeginXx method that kicks off an asynchronous operatio...

.NET Parallel Programming
Feb 29, 2008
Post comments count0
Post likes count0

VSj article on Parallel Extensions

Stephen Toub - MSFT
Stephen Toub - MSFT

Daniel Moth is back with a nice article introducing the preview release of Parallel Extensions to the .NET Framework.  Great work, Daniel!

.NET Parallel Programming
Feb 27, 2008
Post comments count0
Post likes count0

Custom parallel looping constructs

Stephen Toub - MSFT
Stephen Toub - MSFT

For those of you that have examined the internals of the Task Parallel Library in our December '07 CTP release, you've likely noticed that the methods on the System.Threading.Parallel type are implemented on top of System.Threading.Tasks.Task type, and that they do so taking advantage of Task's self-replicating functionality.  The idea behind ...

.NET Parallel Programming
Feb 19, 2008
Post comments count0
Post likes count0

Task Parallel Library on Channel 9

Stephen Toub - MSFT
Stephen Toub - MSFT

Charles from Channel 9 sat down with several of us from the Parallel Computing Platform team to discuss the Task Parallel Library component of Parallel Extensions. A video of the conversation is now available on Channel9: https://channel9.msdn.com/Showpost.aspx?postid=384229. We hope you like it, and as always, feedback is welco...

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

Burton Smith on Channel 9

Stephen Toub - MSFT
Stephen Toub - MSFT

Burton Smith is a Technical Fellow at Microsoft and an industry leader in the fields of parallel and high-performance computing.  As part of a new video series we've kicked off, the folks at Channel 9 have posted a terrific hour-long interview with Burton about the past, present, and future of parallel computing.  Definitely check it out....

.NET Parallel Programming
Feb 4, 2008
Post comments count0
Post likes count0

Interested in parallel computing? We’re hiring!

Stephen Toub - MSFT
Stephen Toub - MSFT

If you're reading this post, you most likely have an interest in parallel 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 have a good number of positions available: ...

.NET Parallel Programming
Jan 31, 2008
Post comments count0
Post likes count1

Recursion and Concurrency

Stephen Toub - MSFT
Stephen Toub - MSFT

When teaching recursion in an introductory computer science course, one of the most common examples used involves a tree data structure.  Trees are useful in this regard as they are simple and recursive in nature, with a tree's children also being trees, and allow for teaching different kinds of traversals (in-order, pre-order, post-order...

.NET Parallel Programming
Jan 27, 2008
Post comments count0
Post likes count0

PLINQ at Seattle Code Camp

Stephen Toub - MSFT
Stephen Toub - MSFT

In the Seattle area and want to hear more about PLINQ?  Igor Ostrovsky, a developer on the Parallel Extensions team, will be speaking today at the Seattle Code Camp from 3:00-4:15pm.  Check it out!

.NET Parallel Programming
Jan 21, 2008
Post comments count0
Post likes count0

Parallel Aggregations in PLINQ

Igor Ostrovsky - MSFT
Igor Ostrovsky - MSFT

Quick Overview of LINQ Aggregations In order to explain the issues we encounter when parallelizing aggregations in PLINQ, let's first take a quick look at how aggregations work in LINQ.Aggregation is an operation that iterates over a sequence of input elements, maintaining an accumulator that contains the intermediate result. At each step, a reduct...

.NET Parallel Programming