Just sharing some of my inconsequential lunch conversations with you... RSS  

Thursday, October 11, 2007

Parallelizing is here to stay

Parallelizing is here to stay, the question is how. As I've mention earlier:

wouldn't it make sense if parallel support was added to the languages them self, not to the class library?

Here's another library solution, from F#:

let task1 = async { return 10+10 }

let task2 = async { return 20+20 }

Async.Run (Async.Parallel [ task1; task2 ])

No comments:

Development Catharsis :: Copyright 2006 Mário Romano