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