Showing results for 2008 - Page 6 of 6 - .NET Parallel Programming

Jan 31, 2008
0
1

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...

Parallel ExtensionsTask Parallel LibraryCode Samples
Jan 27, 2008
0
0

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!

Parallel ExtensionsPLINQTalks
Jan 21, 2008
0
0

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...

Parallel ExtensionsPLINQ
Jan 15, 2008
0
0

Debugger display of PLINQ queries

Stephen Toub - MSFT
Stephen Toub - MSFT

Sometimes very simple additions to an API or implementation make me happy.  One such nicety in the CTP of PLINQ is the implementation of ToString on the concrete types that represent query operators.  These implementations provide a textual representation of the query structure, which can be very nice for debugging purposes. Consider...

Parallel ExtensionsPLINQTesting