Showing results for Parallelism Blockers - .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
Dec 17, 2007
0
0

LINQ 101, “Parallelism Blockers,” and PLINQ

Stephen Toub - MSFT
Stephen Toub - MSFT

PLINQ is a very cool technology, and I believe it will prove useful for parallelizing operations in a wide range of important scenarios.  Moreover, I believe that the programming model it provides will enable a wide-range of developers to easily take advantage of concurrency in their applications.  However, one of the risks involved ...

PLINQParallelism Blockers