![]() |
VOOZH | about |
Von Neumann and Harvard architectures are the two basic models in the field of computer architecture, explaining the organization of memory and processing units in a computer system. For those involved in Computer Science or working in companies providing computing technologies, it is essential to understand the characteristics of these architectures.
There are two models of multiprocessing architectures: Von Neumann and Harvard. While the former occupies a dominant position, this article will discuss its principal differences from the latter, along with their respective advantages and disadvantages, to help you understand which architecture is more suitable for a given application.
Von Neumann Architecture is a digital computer architecture whose design is based on the concept of stored program computers where program data and instruction data are stored in the same memory. This architecture was designed by the famous mathematician and physicist John Von Neumann in 1945.
Harvard Architecture is the digital computer architecture whose design is based on the concept where there are separate storage and separate buses (signal path) for instruction and data. It was basically developed to overcome the bottleneck of Von Neumann Architecture.
The Von Neumann and Harvard architectures are fundamental concepts in computer organization, each with distinct memory and processor setups. To fully grasp these architectures and their significance in modern computing, the GATE CS Self-Paced Course dives deep into computer architecture, making the learning process straightforward and exam-ready.
| VON NEUMANN ARCHITECTURE | HARVARD ARCHITECTURE |
|---|---|
| It is ancient computer architecture based on stored program computer concept. | It is modern computer architecture based on Harvard Mark I relay based model. |
| Same physical memory address is used for instructions and data. | Separate physical memory address is used for instructions and data. |
| There is common bus for data and instruction transfer. | Separate buses are used for transferring data and instruction. |
| Two clock cycles are required to execute single instruction. | An instruction is executed in a single cycle. |
| It is cheaper in cost. | It is costly than Von Neumann Architecture. |
| CPU can not access instructions and read/write at the same time. | CPU can access instructions and read/write at the same time. |
| It is used in personal computers and small computers. | It is used in micro controllers and signal processing. |