Concurrency vs Parallelism - What is the difference? Any examples

link

70% accept rate
feedback

5 Answers

up vote 50 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-threaded 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.

link
2  
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
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. – Anisha Kaul Mar 1 at 8:54
feedback

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.

link
+1 for intuitive visual explanation! – RichieHindle Jun 27 '09 at 17:44
5  
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
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
feedback

concurency: multiple execution flows with the potential cu 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.

link
feedback

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.

link
feedback

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

link
1  
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
feedback

Your Answer

 
or
required, but never shown

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