Showing results for December 2007 - .NET Parallel Programming

Dec 31, 2007
0
0

Parallel Extensions on .NET Rocks

Stephen Toub - MSFT
Stephen Toub - MSFT

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 programming easier for us all."Enjoy!

Parallel ExtensionsTask Parallel LibraryMedia
Dec 19, 2007
0
0

F# and the Task Parallel Library

Stephen Toub - MSFT
Stephen Toub - MSFT

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. TPL excels at CPU-intensive parallelism and exploiting multiple cores, especially ...

Parallel ExtensionsTask Parallel LibraryF#
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
Dec 12, 2007
0
0

Another Parallel Extensions screencast

Stephen Toub - MSFT
Stephen Toub - MSFT

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 the MSDN Parallel Computing developer center soon, but in the meantime, head ...

Parallel ExtensionsTask Parallel LibraryMSDN
Dec 10, 2007
0
0

Code Snippets for Parallel.For and Parallel.ForEach

Stephen Toub - MSFT
Stephen Toub - MSFT

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 the "for" code snippet: Now you press the tab key twice, and Visual Studio...

Parallel ExtensionsTask Parallel LibraryCode Samples
Dec 7, 2007
0
0

Parallelizing a query with multiple “from” clauses

poojanagpal
poojanagpal

Consider a simplified version of Luke Hoban's LINQ ray tracervar Xs = Enumerable.Range(1, screenWidth);var Ys = Enumerable.Range(1, screenHeight); var sequentialQuery =   from x in Xsfrom y in Ysselect new { X = x, Y = y, Color = TraceRay(x, y) }; If the screen width is much larger than the screen height, we would choose to para...

Parallel ExtensionsCode SamplesPLINQ
Dec 5, 2007
0
0

Parallel Extensions and Silverlight 2.0

joedu
joedu

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 compatibility story very nicely over on his blog.  I will summarize...

Parallel ExtensionsSilverlight
Dec 4, 2007
0
0

Give Feedback Through the Connect site

essey
essey

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 are a great way to raise concerns, ask how-to questions, and engage in a dialogue,...

Parallel ExtensionsMSDN
Dec 4, 2007
0
0

MSDN Forums

Stephen Toub - MSFT
Stephen Toub - MSFT

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.

Parallel ExtensionsMSDN
Dec 2, 2007
0
0

Chunk partitioning vs range partitioning in PLINQ

Stephen Toub - MSFT
Stephen Toub - MSFT

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 y in Enumerable.Range(0, screenHeight)For our sample, we've changed that to: from...

Parallel ExtensionsCode SamplesPLINQ