Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Concurrency vs Parallelism - What is the difference? Any examples

share|improve this question

9 Answers

up vote 119 down vote accepted

Concurrency is when two tasks can start, run, and complete in overlapping time periods. It doesn't necessarily mean they'll ever both be running at the same instant. Eg. multitasking on a single-core machine.

Parallelism is when tasks literally run at the same time, eg. on a multicore processor.

Quoting Sun's Multithreaded Programming Guide:

  • Parallelism: A condition that arises when at least two threads are executing simultaneously.

  • Concurrency: A condition that exists when at least two threads are making progress. A more generalized form of parallelism that can include time-slicing as a form of virtual parallelism.

share|improve this answer
7  
I like this answer, but I'd perhaps go further and characterise concurrency as a property of a program or system (and parallelism as the run-time behaviour of executing multiple tasks at the same time). – Adrian Mouat Apr 6 '11 at 15:52
1  
System Threads vs Green Threads en.wikipedia.org/wiki/Green_threads – Scott Markwell Jun 14 '11 at 0:59
4  
I like Adrian Mouat's comment very much. See also this excellent explanation: haskell.org/haskellwiki/Parallelism_vs._Concurrency – jberryman Oct 7 '11 at 2:25
thanks for the helpful answer. – user462608 Mar 1 '12 at 8:54
Link is dead on Oracles site – justinhj Mar 26 at 1:29
show 1 more comment

If multiple processes are running in parallel, they are all accomplishing their tasks simultaneously and independently of each other. For example:

 Process A                Process B
-----------              -----------
  Step 1                   Step 1
  Step 2                   Step 2
  Step 3                   Step 3
  Step 4                   Step 4

However, if multiple processes are running concurrently, they each take turns working toward accomplishing their goals.

 Process A                Process B
-----------              -----------
  Step 1
                           Step 1
  Step 2
                           Step 2
  Step 3
                           Step 3
  Step 4
                           Step 4

Concurrency can often appear like parallelism if the switching between processes is rapid enough.

share|improve this answer
   
+1 for intuitive visual explanation! – RichieHindle Jun 27 '09 at 17:44
14  
I disagree with this. A program designed to be concurrent may or may not be running in parallel. Concurrency is all about ensuring correct access to shared resources. – Adrian Mouat Apr 6 '11 at 15:48
1  
Agree with Adrian. The number of CPUs doesn't matter, that's up to the scheduler. What limits the the scheduler are coordinating shared resources. That includes CPU, memory, disk, network, IO, etc. – Todd Hoff Jun 14 '11 at 0:36
The second example should be labeled "Virtual Parallelism", and both are examples of concurrency. – Mk12 Jul 6 '12 at 20:54

concurency: multiple execution flows with the potential to share resources

Ex: two threads competing for a I/O port.

paralelism: splitting a problem in multiple similar chunks.

Ex: parsing a big file by running two processes on every half of the file.

share|improve this answer

Concurrency: If two or more problems are solved by a single processor. alt text

Parallelism: If one problem is solved by multiple processors.

alt text

share|improve this answer
5  
I'd disagree with this - a program designed to be concurrent may or may not be run in parallel; concurrency is more an attribute of a program, parallelism may occur when it executes. – Adrian Mouat Apr 6 '11 at 15:43

They solve different problems. Concurrency solves the problem of having scarce CPU resources and many tasks. So, you create threads or independent paths of execution through code in order to share time on the scarce resource. Up until recently, concurrency has dominated the discussion because of CPU availability.

Parallelism solves the problem of finding enough tasks and appropriate tasks (ones that can be split apart correctly) and distributing them over plentiful CPU resources. Parallelism has always been around of course, but it's coming to the forefront because multi-core processors are so cheap.

share|improve this answer

I like Rob Pike explanation: Concurrency is not Parallelism (it's better)

The slides are about Go but the first part addresses the question Concurrency vs Parallelism.

He uses gophers to provide a visual and intuitive explanationGophers

share|improve this answer
Nice slideshow. Very helpful--thanks! – chb Apr 11 at 9:34
This is excellent! Thanks. – Amumu May 20 at 5:37

To add onto what others have said:

Concurrency is like having a juggler juggle many balls. Regardless of how it seems, the juggler is only catching/throwing one ball at a time. Parallelism is having multiple jugglers juggle balls simultaneously.

share|improve this answer

Concurrency => When multiple tasks performed simultaneously with shared resources.

Parallel => when single task divided into multiple simple independent tasks which can be performed simultaneously.

share|improve this answer

In electronics serial and parallel represent a type of static topology, determining the actual behaviour of the circuit. When there is no concurrency, parallelism is deterministic.

In order to describe dynamic, time-related phenomena, we use the terms sequential and concurrent. For example, a certain outcome may be obtained via a certain sequence of tasks (eg. a recipe). When we are talking with someone, we are producing a sequence of words. However, in reality, many other processes occur in the same moment, and thus, concur to the actual result of a certain action. If a lot of people is talking at the same time, concurrent talks may interfere with our sequence, but the outcomes of this interference are not known in advance. Concurrency introduces indeterminacy.

The serial/parallel and sequential/concurrent characterization are orthogonal. An example of this is in digital communication. In a serial adapter, a digital message is temporally (i.e. sequentially) distributed along the same communication line (eg. one wire). In a parallel adapter, this is divided also on parallel communication lines (eg. many wires), and then reconstructed on the receiving end.

Let us image a game, with 9 children. If we dispose them as a chain, give a message at the first and receive it at the end, we would have a serial communication. More words compose the message, consisting in a sequence of communication unities.

I like ice-cream so much. > X > X > X > X > X > X > X > X > X > ....

This is a sequential process reproduced on a serial infrastructure.

Now, let us image to divide the children in groups of 3. We divide the phrase in three parts, give the first to the child of the line at our left, the second to the center line's child, etc.

I like ice-cream so much. > I like    > X > X > X > .... > ....
                          > ice-cream > X > X > X > ....
                          > so much   > X > X > X > ....

This is a sequential process reproduced on a parallel infrastructure (still partially serialized although).

In both cases, supposing there is a perfect communication between the children, the result is determined in advance.

If there are other persons that talk to the first child at the same time as you, then we will have concurrent processes. We do no know which process will be considered by the infrastructure, so the final outcome is non-determined in advance.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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