vote up 7 vote down star
2

According to Wikipedia, an "embarrassingly parallel" problem is one for which little or no effort is required to separate the problem into a number of parallel tasks. Raytracing is often cited as an example because each ray can, in principle, be processed in parallel.

Obviously, some problems are much harder to parallelize. Some may even be impossible. I'm wondering what terms are used and what the standard examples are for these harder cases.

Can I propose "Annoyingly Sequential" as a possible name?

flag

14 Answers

vote up 33 vote down

Inherently sequential.

Example: The number of women will not reduce the length of pregnancy.

link|flag
Good name. Is that your invention, or the commonly accepted term? Also, nice example, but I'd still like a good example from the domain of computer software. The best I can think of is parsing C code, but that's complex enough that some parts can probably be parallelized. – Andrew Bainbridge Apr 30 at 12:26
1  
I made it up, but I seriously doubt that I coined a term here. There are many examples of sequential work flows, e.g. you can't really fire an employee before hiring the person, you can't (or at least should not) ship an order before the customer places the order and so forth. – Brian Rasmussen Apr 30 at 12:38
5  
Yes, but N women can have N babies in the same amount of time as one woman can have anywhere from one to eight babies. – woodchips Apr 30 at 15:35
2  
Yes, "inherently sequential" has been used for a while now by complexity theorists studying parallel computation classes like NC. – Dave May 1 at 15:13
1  
@Blank: so “disconcerting” is an opposite to “embarrassing”? That said, I’ve seen “inherently sequential” in a lot of places and I believe it’s the most commonly-used idiom. It also describes the fact nicely, since this serialism is inherent in these algorithms. – Konrad Rudolph Nov 2 at 10:31
show 3 more comments
vote up 7 vote down

The opposite of embarassingly parallel is Amdahl's Law, which says that some tasks cannot be parallel, and that the minimum time a perfectly parallel task will require is dictated by the purely sequential portion of that task.

link|flag
Amdahl's law describes the limitation on speed-up from multiple processors, for an algorithm with a given level of parallelization. I don't think it says anything directly about parallelizability per se. – bubaker Jun 11 at 21:05
vote up 5 vote down

"Stubbornly serial"?

link|flag
vote up 5 vote down

Im having a hard time to not post this... cause I know it don't add anything to the discussion.. but for all southpark fans out there

"Super serial!"

link|flag
Don't forget to include the lisp – temp2290 Nov 4 at 22:20
vote up 5 vote down

P-complete (but that's not known for sure yet).

link|flag
vote up 1 vote down

"Gladdengly Sequential"

link|flag
vote up 1 vote down

Boastfully sequential.

link|flag
vote up 0 vote down

It all has to do with data dependencies. Embarrassingly parallel problems are ones for which the solution is made up of many independent parts. Problems with the opposite of this nature would be ones that have massive data dependencies, where there is little to nothing that can be done in parallel. Degeneratively dependent?

link|flag
vote up 0 vote down

"Completely serial?"

It shouldn't really surprise you that scientists think more about what can be done than what cannot be done. Especially in this case, where the alternative to parallelizing is doing everything as one normally would.

link|flag
vote up 0 vote down

Completely non-parallelizable? Pessimally parallelizable?

link|flag
vote up 0 vote down

The term I've heard most often is "tightly-coupled", in that each process must interact and communicate often in order to share intermediate data. Basically, each process depends on others to complete their computation.

For example, matrix processing often involves sharing boundary values at the edges of each array partition.

This is in contrast to embarassingly parallel (or loosely-coupled) problems where each part of the problem is completely self-contained, and no (or very little) IPC is needed. Think master/worker parallelism.

link|flag
vote up 0 vote down

I've always preferred 'sadly sequential' ala the partition step in quicksort.

link|flag
vote up 0 vote down

The opposite is "disconcertingly serial".

link|flag
How do you figure that out? Neither is it common usage nor does it make any sense. – Konrad Rudolph Nov 2 at 10:33
vote up -2 vote down

You could of course, however I think that both 'names' are a non-issue. From a functional programming perspective you could say that the 'annoyingly sequential' part is the smallest more or less independent part of an algorithm.

While the 'embarrassingly parallel' if not indeed taking into a parallel approach is bad coding practice.

Thus I don't see a point in given these things a name if good coding practice is always to brake up your solution into independent pieces, even if you at that moment don't take advantage of parallelism.

link|flag
1  
how is 'embarrassingly parallel' bad coding practice? It describes a set of problems, not the solution. – Erich Mirabal Apr 30 at 12:18
Plenty of algorithms are inherently embarrassingly parallel. An easy one would be the game of life's algorithm. You can do every node simultaneously. – sharth Apr 30 at 15:08

Your Answer

Get an OpenID
or

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