vote up 6 vote down star
7

I've been writing a lot recently about Parallel computing and programming and I do notice that there are a lot of patterns that come up when it comes to parallel computing. Noting that Microsoft already has released a library along with the Microsoft Visual C++ 2010 Community Technical Preview (named Parallel Patterns Library) I'm wondering what are the common parallel programming patterns you have been using and encountering that may be worth remembering? Do you have any idioms you follow and patterns that you seem to keep popping up as you write parallel programs with C++?

flag
Can you clarify what kind of parallel programming you are interested in? Distributed programming using MPI is considerably different from loop level parallelism using OpenMP. – mch Nov 1 '08 at 17:58
I'm particularly interested in general patterns and idioms in parallel programming -- whether it be with distributed-memory or shared-memory models over a single machine or multiple machines. – Dean Michael Nov 1 '08 at 18:09

2 Answers

vote up 10 vote down check

Patterns:

  • Produce/Consumer

    • One Thread produces data
    • One Thread consumes the data
  • Loop parallelism

    • If you can show that each loop is independent
      each iteration can be done in a sperate thread
  • Re-Draw Thread

    • Other threads do work and update data structures but one thread re-draws screen.
  • Main-Event Thread

    • Multiple threads can be generating events
    • One thread has to processes the events (as order is important)
    • Should try separate the Event Thread/Re-Draw Thread
      This (helps) prevents the UI from freezing
      But may cause excessive re-draws if not done carefully.
  • Work Group

    • A set of threads waits for jobs on a que.
    • Thread extract one work item from queue (waiting if none is available).
      Thread works on one work item until complete
      Once completed thread returns to queue.
link|flag
Great list, thanks! – Dean Michael Nov 1 '08 at 18:42
What if the re-draw thread needs to use the data structures while drawing? I mean, isn't it dangerous that it reads from them while the other threads are updating them? – leod Nov 1 '08 at 19:18
Unless the re-draw thread is associated with an Active Object, where changes are "serialized" and the Active Object "owns" the data structures modified. – Dean Michael Nov 1 '08 at 19:47
@leod: If (and only if) you think it is critical, your re-draw thread could potentially get a read lock on the data. Most situations I think would not care too much, if the data is being updated then updater will be posting an update event soon to force a re-draw. – Martin York Nov 2 '08 at 18:27
vote up 1 vote down

First you have to chose between shared-memory computing, and shared-nothing computing. Shared memory is easier, but doesn't scale that well - you will use shared-nothing if you either

a) have a cluster, rather than a multiprocessor system, or

b) if you have many CPUs (say, > 60), and a high degree of non-uniform memory

For shared-memory, the common solution is to use threads; they are easy to understand as a concept, and easy to use in the API (but difficult to debug).

For shared-nothing, you use some kind of messaging. In high-performance computing, MPI is established as the messaging middleware.

You then also need to design an architecture for the parallel activities. The most common approach (again because it's easy to understand) is the farmer-worker-pattern (a.k.a. master-slave).

link|flag
To be fair, you'd don't necessarily have to choose just one -- you can create an architecture that supports both. But these points are valid -- you need to be clear about which you're supporting where because the requirements (and often the designs) are quite different. – Pat Notz Nov 25 '08 at 15:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.