vote up 1 vote down star

What is an example of a parallel acceleration anomaly? ie. A task that when run over p processors, results in a speedup greater than p.

flag

4 Answers

vote up 1 vote down check

Consider a matrix algorithm that for the purposes of parallelization is modified in such a way that every computing node is assigned a region of the matrix and only operates on this region.

If with one node the region doesn't fit into cache (because it's the whole matrix) and with multiple nodes it starts fitting into cache (the more nodes the smaller is the region) accessing data becomes much faster and this might (but not always will) result in abnormal acceleration.

link|flag
1  
This is often called "superlinear speedup". You expect a speedup of 4 when running on a four processor system but actually you get 5. – Ade Miller Jul 9 at 5:53
vote up 1 vote down

One area where superlinear speedup occurs is for search problems.

If the solution is found on one of the additional processors then the computation finishes early, and part of the original workload is never executed.

Of course, one could simulate the n processors by parallel threads on one processor and get the same effect, but this is not usually done.

link|flag
vote up 0 vote down

see http://publishing.eur.nl/ir/repub/asset/1438/eur-few-cs-95-05.pdf, page 11, "5 Anomalies in the real world"

link|flag
vote up 0 vote down

These may help:

(Community wiki answer: add useful links here instead of creating new answers.)

link|flag

Your Answer

Get an OpenID
or

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