What parallel programming model do you recommend today to take advantage of the manycore processors of tomorrow? [closed]
Multi-core programming may actually require more than one paradigm. Some current contenders are: MapReduce. This works well where a problem can be easily decomposed into parallel chunks. Nested Data Parallelism. This is similar to MapReduce, but actually supports recursive decomposition of a problem, even when the recursive chunks are of irregular size. Look for NDP … Read more