Concurrency vs Parallelism - What is the difference? Any examples
|
feedback
|
|
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:
| |||||||||||||
feedback
|
|
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. | |||||||||
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. | |||
|
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. | |||
|
feedback
|
|
Concurrency: If two or more problems are solved by a single processor.
Parallelism: If one problem is solved by multiple processors.
| |||||
feedback
|

