4,391 Posts served
10,712 Conversations started
Navigation
Posts By Category
- Academic

- Android

- Art, Music, & Animation

- Embedded Computing

- Events

- Game Development

- Graphics & Media

- Intel SW Partner Program

- Intel® AppUp Developer Program

- Manageability & Security

- Mobility

- Open Source

- Parallel Programming

- Performance and Optimization

- Power Efficiency

- Site News & Announcements

- Software Tools

Blog Roll
- Association for Computing Machinery TechNews (ACM)
- Go Parallel! (Dr. Dobbs)
- HPCwire (Tabor Communications, Inc.)
- insideHPC (John West)
- Joe Duffy's Weblog (Microsoft)
- Microsoft Parallel Programming Development Center (Microsoft Germany)
- MultiCoreInfo.com
- scalability.org (Scalable Informatics)
- Software Dev Blog (Intel Germany)
- Soft Talk Blog (Intel United Kingdom)
- The Moth (Microsoft)
Top 10 challenges in parallel computing
By Michael Wrinn (Intel) (13 posts) on December 31, 2008 at 11:02 pm
In the spirit of yearend, top 10 lists, here is one for parallel computing. A version appeared earlier this year in a paper with Tim Mattson, who's talked about this in other forums and gets full credit for its collation; it reflects thinking by some of the folks here, and is worth posting for discussion. Note the list is for parallel computing, so encompasses hardware, tools, and design considerations as well as programming. In priority order:
-
Finding concurrency in a program - how to help programmers “think parallel”?
-
Scheduling tasks at the right granularity onto the processors of a parallel machine.
-
The data locality problem: associating data with tasks and doing it in a way that our target audience will be able to use correctly.
-
Scalability support in hardware: bandwidth and latencies to memory plus interconnects between processing elements.
-
Scalability support in software: libraries, scalable algorithms, and adaptive runtimes to map high level software onto platform details.
-
Synchronization constructs (and protocols) that enable programmers write programs free from deadlock and race conditions.
-
Tools, API’s and methodologies to support the debugging process.
-
Error recovery and support for fault tolerance.
-
Support for good software engineering practices: composability, incremental parallelism, and code reuse.
-
Support for portable performance. What are the right models (or abstractions) so programmers can write code once and expect it to execute well on the important parallel platforms?
Reactions, please! Some things to consider:
-
We make no mention of power consumption - is that reasonable? How would the power challenge be phrased, and where would it slot into the list?
-
Data locality (#3) is intimately tied to scalability (#4). As systems become heterogeneous, with an assortment of different latencies among elements, how can we reconcile this tuning to portability (#10)?
-
Are we underestimating the importance of composability, so innocently tucked into "good software engineering" (#9)? And by the way, how would you teach that concept to university students, and in which course?
Lots more -- let's pick it up in 2009. Happy New Year to all!
Categories: Academic, Parallel Programming
For more complete information about compiler optimizations, see our Optimization Notice.
Comments (1)
Trackbacks (0)
Leave a comment 
To obtain technical support, please go to Software Support.

David Brooks
Cheers!
David Brooks