Skip to content
Related Articles
Open in App
Not now

Related Articles

Difference between Parallel Computing and Distributed Computing

Improve Article
Save Article
Like Article
  • Difficulty Level : Medium
  • Last Updated : 25 Nov, 2019
Improve Article
Save Article
Like Article

Parallel Computing:
In parallel computing multiple processors performs multiple tasks assigned to them simultaneously. Memory in parallel systems can either be shared or distributed. Parallel computing provides concurrency and saves time and money.

Distributed Computing:
In distributed computing we have multiple autonomous computers which seems to the user as single system. In distributed systems there is no shared memory and computers communicate with each other through message passing. In distributed computing a single task is divided among different computers.

Difference between Parallel Computing and Distributed Computing:

S.NOParallel ComputingDistributed Computing
1.Many operations are performed simultaneouslySystem components are located at different locations
2.Single computer is requiredUses multiple computers
3.Multiple processors perform multiple operationsMultiple computers perform multiple operations
4.It may have shared or distributed memoryIt have only distributed memory
5.Processors communicate with each other through busComputer communicate with each other through message passing.
6.Improves the system performanceImproves system scalability, fault tolerance and resource sharing capabilities

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!