1 / 18

The Von Neumann Architecture

The fetch-execute cycle. The Von Neumann Architecture . A layout of the VNA also showing the data paths. Computer buses. A bus is a set of parallel wires connecting two or more components of the computer. Data bus – carries data from a given location to the CPU

ryder-watts
Download Presentation

The Von Neumann Architecture

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. The fetch-execute cycle The Von Neumann Architecture

  2. A layout of the VNA also showing the data paths.

  3. Computer buses • A bus is a set of parallel wires connecting two or more components of the computer. • Data bus – carries data from a given location to the CPU • Address bus – carries the address of a particular memory location during transfer of data to memory • Control bus – control signals are sent along this bus. • The data, address and control buses connect the processor, memory and I/O controllers. These are all system buses.

  4. Failures of Von Neumann • Both data and programs share the same memory space. This is a problem because it is quite easy for a poorly written or faulty piece of code to write data into an area holding other instructions, so trashing that program.

  5. Every piece of data and instruction has to pass across the data bus in order to move from main memory into the CPU (and back again). • This is a problem because the data bus is a lot slower than the rate at which the CPU can carry out instructions. • This is called the 'Von Neumann bottleneck'. • If nothing were done, the CPU would spend most of its time waiting around for instructions. • A special kind of memory called a 'Cache' (pronounced 'cash') is used to tackle with this problem

  6. The rate at which data needs to be fetched and the rate at which instructions need to be fetched are often very different. And yet they share the same bottlenecked data bus. • To solve the problem idea of the Harvard Architecture is considered that to split the memory into two parts. • One part for data and another part for programs. Each part is accessed with a different bus. • This means the CPU can be fetching both data and instructions at the same time.

  7. Types of parallel processing

  8. Parallel Processors • Parallel processing is the simultaneous processing of data. • The simultaneous use of more than one CPU or processor core to execute a program or multiple threads. Hence this speeds up the rate at which processing occurs.

  9. Advantages of parallel processing • Faster when handling large amounts of data • Is not limited by the bus transfer rate (the Von Neumann bottleneck) • Can make maximum use of the CPU (pipeline method) in spite of the bottleneck

  10. Pipelining (SISD) • The Von Neumann architecture in microprocessor illustrates that an instruction can be in one of 3 phases/stages. It could be being: • fetched (from memory) • decoded (by the control unit) • executed (by the control unit) • Alternative is split the processor up into 3 parts • Each part handles one of the 3 stages.

  11. This results in the situation shown in Fig below, which shows how this process known as pipelining, works. • The effect of pipe lining is that there are 3 instructions being dealt with at the same time. • This SHOULD reduce the execution times considerably

  12. Array or Vector processing • Has a number of ALUs that allows all the elements of an array to be processed at the same time. • A single instruction is issued by a control unit and that instruction is applied to a number of data sets at the same time. • It is a Single Instruction Multiple Data computer (SIMD)

  13. An architecture of an array processor

  14. Multiple Processors • Multiple instructions act upon multiple data sets(MIMD) • By having a number of CPUs being applied to a single problem • With each CPU carrying out only part of the overall problem.

  15. An architecture of an array processor • Applied to problems such as predicting climate change or running new drug simulations.

  16. Co-processor (Maths co-processor) • A processor used to supplement the functions of the primary processor (the CPU). • Is especially designed to carry out floating point arithmetic calculations extremely quickly. • Other operations performed by the co-processor are: • graphics • signal processing • string processing • encryption

  17. Assignment 2 • Qn 1: What are the disadvantages of parallel processing? • Qn 2: What are the applications and limitations of array, multiple and pipeline processors?

More Related