Open In App

Difference between MultiCore and MultiProcessor System

1. Multicore System :
A processor that has more than one core is called Multicore Processor while one with single core is called Unicore Processor or Uniprocessor. Nowadays, most of systems have four cores (Quad-core) or eight cores (Octa-core). These cores can individually read and execute program instructions, giving feel like computer system has several processors but in reality, they are cores and not processors. Instructions can be calculation, data transferring instruction, branch instruction, etc. Processor can run instructions on separate cores at same time. This increases overall speed of program execution in system. Thus heat generated by processor gets reduced and increases overall speed of execution.

Multicore systems support MultiThreading and Parallel Computing. Multicore processors are widely used across many application domains, including general-purpose, embedded, network, digital signal processing (DSP), and graphics (GPU). Efficient software algorithms should be used for implementation of cores to achieve higher performance. Software that can run parallelly is preferred because we want to achieve parallel execution with the help of multiple cores.



Advantages :

Disadvantages :



2. MultiProcessor System :
Two or more processors or CPUs present in same computer, sharing system bus, memory and I/O is called MultiProcessing System. It allows parallel execution of different processors. These systems are reliable since failure of any single processor does not affect other processors. A quad-processor system can execute four processes at a time while an octa-processor can execute eight processes at a time. The memory and other resources may be shared or distributed among processes.

Advantages :

Disadvantages :


Difference between MultiCore and MultiProcessor System :

S.No. MultiCore MultiProcessor
1. A single CPU or processor with two or more independent processing units called cores that are capable of reading and executing program instructions. A system with two or more CPU’s that allows simultaneous processing of programs.
2. It executes single program faster. It executes multiple programs Faster.
3. Not as reliable as multiprocessor. More reliable since failure in one CPU will not affect other.
4. It has less traffic. It has more traffic.
5. It does not need to be configured. It needs little complex configuration.
6. It’s very cheaper (single CPU that does not require multiple CPU support system). It is Expensive (Multiple separate CPU’s that require system that supports multiple processors) as compared to MultiCore.

Conclusion :

Article Tags :