Concurrency vs Parallelism - What is the difference? Any examples
|
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:
|
|||||||||||||||||
|
|
If multiple processes are running in parallel, they are all accomplishing their tasks simultaneously and independently of each other. For example:
However, if multiple processes are running concurrently, they each take turns working toward accomplishing their goals.
Concurrency can often appear like parallelism if the switching between processes is rapid enough. |
|||||||||||||||
|
|
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. |
||||
|
|
|
Concurrency: If two or more problems are solved by a single processor.
Parallelism: If one problem is solved by multiple processors.
|
|||||
|
|
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. |
|||
|
|
|
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 explanation |
|||
|
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. |
|||
|
|
|
Concurrency => When multiple tasks performed simultaneously with shared resources. Parallel => when single task divided into multiple simple independent tasks which can be performed simultaneously. |
||||
|
|
|
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.
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.
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. |
||||
|
|

