Showing results for Parallel Extensions - .NET Blog

Oct 2, 2008
Post comments count0
Post likes count0

Parallelism in October 2008 MSDN Magazine

Stephen Toub - MSFT
Stephen Toub - MSFT

The October 2008 issue of MSDN Magazine just went online yesterday, and it's chock full of content on parallelism.  Definitely worth a cover to cover read!

.NET Parallel Programming
Sep 2, 2008
Post comments count0
Post likes count0

Webcasts on Parallelism from France

Stephen Toub - MSFT
Stephen Toub - MSFT

A few months back, Keith Yedlin and Steve Teixeira from the Parallel Computing Platform team were in France visiting with customers.  While there, they presented on our parallelism efforts, and with the help of the great team from Microsoft France, this presentation is now available online as a series of webcasts (the titles are all in French,...

.NET Parallel Programming
Aug 12, 2008
Post comments count0
Post likes count0

Feedback requested: Enumerating Concurrent Collections

Stephen Toub - MSFT
Stephen Toub - MSFT

The June 2008 CTP of Parallel Extensions contained a first look at some of the work we're doing to augment the .NET Framework with a set of additional coordination data structures that aid in the development of highly concurrent applications.  This included two thread-safe collections, ConcurrentQueue<T> and ConcurrentStack<T>, and...

.NET Parallel Programming
Aug 7, 2008
Post comments count0
Post likes count0

ParallelWhileNotEmpty

Stephen Toub - MSFT
Stephen Toub - MSFT

Parallel Extensions includes the System.Threading.Parallel class, which provides several high-level loop replacement constructs like For and ForEach. In previous blog posts, we've taken a look at implementing other loops, such as for loops with arbitrary initialization, conditional, and update logic, range-based loops, and a parallel while.  T...

.NET Parallel Programming
Aug 5, 2008
Post comments count0
Post likes count0

Waiting for Tasks

Stephen Toub - MSFT
Stephen Toub - MSFT

Parallel Extensions makes it easy to wait for Tasks to complete.  Task exposes a Wait method, which can be used trivially: Task t = Task.Create(...); ... t.Wait();Task also exposes several static methods for waiting on an array of tasks, either for all of them to complete or for any of them to complete: Task t1 = Task.Create(...); Task t2 = Ta...

.NET Parallel Programming
Aug 1, 2008
Post comments count0
Post likes count0

Feedback requested: TaskManager shutdown, Fair scheduling

Stephen Toub - MSFT
Stephen Toub - MSFT

One of the primary reasons we've released CTPs of Parallel Extensions is to solicit feedback on the design and functionality it provides.  Does it provide all of the APIs you need to get your job done?  Are there scenarios you wished the APIs supported and that you need to work around in klunky ways?  And so forth.  We've receiv...

.NET Parallel Programming
Jul 24, 2008
Post comments count0
Post likes count1

Useful Abstractions Enabled with ContinueWith

Stephen Toub - MSFT
Stephen Toub - MSFT

In the June 2008 CTP of Parallel Extensions to the .NET Framework, we introduced the ContinueWith method on both Task and Future<T>.  ContinueWith is, in effect, a callback, very much like events in .NET.  With events, a causal action results in the event being raised, which by default triggers all of the delegates registered with t...

.NET Parallel Programming
Jun 18, 2008
Post comments count0
Post likes count0

Coordination Data Structures Overview

Emad Omara
Emad Omara

The June 2008 CTP of Parallel Extensions provides the first look at its 3rd major piece, a set of coordination data structures we lovably refer to as CDS. It contains lightweight and scalable thread-safe data structures and synchronization primitives.  There are of course already many synchronization primitives present in the System.Threading ...

.NET Parallel Programming
Jun 11, 2008
Post comments count0
Post likes count0

PLINQ Ordering

essey
essey

There is a natural tension between ordering and performance in a parallel partitioning system such as PLINQ, which we addressed as guidance in the Dec07 CTP documentation:  “Although you can opt into ordering, this does come at a cost to performance because it constrains the options which PLINQ can use for executing a query, so it is bet...

.NET Parallel Programming
Jun 11, 2008
Post comments count0
Post likes count0

Parallel Extensions Demo Fun on Channel 9

Stephen Toub - MSFT
Stephen Toub - MSFT

When I was at TechEd 2008 Developer last week, I met up with the great Dan Fernandez from Channel 9 to show off Parallel Extensions and to demonstrate some of the sample applications included with our June 2008 CTP.  The cameras were at the ready, so you can see the demonstrations, too: Thanks, Dan!

.NET Parallel Programming