Welcome to MSDN Blogs Sign in | Join | Help

News

  • These postings are provided "AS IS" with no warranties and confer no rights. All code and tools presented are done so under the Microsoft Public License.

December 2007 - Posts

Parallel Extensions on .NET Rocks
Joe Duffy, our dev lead, appeared on the 12/25/07 edition of .NET Rocks! , speaking about Parallel Extensions and the Task Parallel Library: " Carl and Richard talk to Microsoft's Joe Duffy about the Task Parallel Library, which promises to make multi-threaded Read More...
F# and the Task Parallel Library
Over on his blog, Don Syme has a post about F# and Parallel Extensions : "Over the coming year I expect we'll be seeing this library used very widely from F#, and we'll eventually be using the TPL as a key underlying technology for F# asynchronous workflows Read More...
LINQ 101, "Parallelism Blockers," and PLINQ
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 Read More...
Another Parallel Extensions screencast
Daniel Moth is on a roll. Two weeks ago he created three great overview screencasts for Parallel Extensions to the .NET Framework . Today, he released a fourth video , covering the Task and TaskManager classes. Thanks, Daniel! We'll get this added to Read More...
Code Snippets for Parallel.For and Parallel.ForEach
Introduced in Visual Studio 2005, Code Snippets allow you to quickly insert reusable blocks of code into your project. For example, if you want to quickly write a for loop in C#, you can simply type "for" into your code file, and IntelliSense shows you Read More...
Parallelizing a query with multiple “from” clauses
Consider a simplified version of Luke Hoban's LINQ ray tracer var Xs = Enumerable .Range(1, screenWidth); var Ys = Enumerable .Range(1, screenHeight); var sequentialQuery = from x in Xs from y in Ys select new { X = x, Y = y, Color = TraceRay(x, y) }; Read More...
Parallel Extensions and Silverlight 2.0
From time to time, we get a question about whether we intend for Parallel Extensions to target Silverlight. The simple answer is: Not Yet. Here’s a more complete answer: Not for Silverlight 2.0, at least. Rich Lander from the CLR team described the Silverlight Read More...
Give Feedback Through the Connect site
Have you found any bugs, unknown issues (vs. known issues ), or any wish list items? Go to our Connect site , sign up for the Parallel Extensions to the .NET Framework connection, and start giving us direct feedback. While the blog comments and forums Read More...
MSDN Forums
There are some great discussions going on over at the Parallel Extensions forum on MSDN . Download the CTP , try out the bits, head on over to the forums , and get involved! We'd love to hear from you. Read More...
Chunk partitioning vs range partitioning in PLINQ
If you look in the PLINQ samples in the December 2007 CTP , you'll see a parallel implementation of Luke Hoban's LINQ ray tracer . The sample parallelizes the ray tracer by changing very few lines of code. Luke's original query started as follows: from Read More...
Page view tracker