1 / 80

PIPELINING

PIPELINING. Santosh Lakkaraju CS 147 Dr. Lee. Pipelining. What is it? How does it work? What are the benefits? What could go wrong?. What is pipelining?. Pipelining is a design feature that allows individual common processor tasks to run simultaneously, such as: Fetch Decode Execute.

inari
Télécharger la présentation

PIPELINING

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. PIPELINING Santosh Lakkaraju CS 147 Dr. Lee

  2. Pipelining • What is it? • How does it work? • What are the benefits? • What could go wrong?

  3. What is pipelining? Pipelining is a design feature that allows individual common processor tasks to run simultaneously, such as: FetchDecodeExecute

  4. What is pipelining? Or, more specifically in modern computers, Instruction readDecodeOperand readExecuteOperand write

  5. What is pipelining? • No more “one instruction at a time” processing • Processor works simultaneously on multiple instructions • The cycle time of the processor is reduced, thus increasing instruction issue-rate in most cases.

  6. How does pipelining work? • First instruction is fetched from memory

  7. How does pipelining work? • First instruction is fetched from memory • First instruction is decoded;second instruction is fetched

  8. How does pipelining work? • First instruction is fetched from memory • First instruction is decoded;second instruction is fetched • First instruction’s operands are fetched;second instruction is decoded;third instruction is fetched

  9. How does pipelining work? • First instruction is fetched from memory • First instruction is decoded;second instruction is fetched • First instruction’s operands are fetched;second instruction is decoded;third instruction is fetched • And on, and on, and on…

  10. How does pipelining work? • Because each instruction demands one stage of the processor, the maximum number of simultaneous instructions is the number of stages in the processor

  11. How does pipelining work? A short animation of simple processor routines

  12. How does pipelining work? A short(er) animation of pipelined processor routines

More Related