pipelining
play

Pipelining 1 Today Quiz Introduction to pipelining 2 Pipelining - PowerPoint PPT Presentation

Pipelining 1 Today Quiz Introduction to pipelining 2 Pipelining L L a a Logic (10ns) t t c c 10ns L L a a Logic (10ns) t t c c 20ns L L a a Logic (10ns) t t c c 30ns Whats the latency for one unit of


  1. Pipelining 1

  2. Today • Quiz • Introduction to pipelining 2

  3. Pipelining L L a a Logic (10ns) t t c c 10ns L L a a Logic (10ns) t t c c 20ns L L a a Logic (10ns) t t c c 30ns What’s the latency for one unit of work? What’s the throughput?

  4. Pipelining 1. Break up the logic with latches into “pipeline stages” 2. Each stage can act on different data 3. Latches hold the inputs to their stage 4. Every clock cycle data transfers from one pipe stage to the next L L a a Logic (10ns) t t c c L L L L L L a a a a a a Logic(2ns) Logic(2ns) Logic(2ns) Logic(2ns) Logic(2ns) t t t t t t c c c c c c

  5. Logic Logic Logic Logic Logic 2 n Logic Logic Logic Logic Logic 4 s n Logic Logic Logic Logic Logic 6 s n Logic Logic Logic Logic Logic 8 s n Logic Logic Logic Logic Logic 10 s ns Logic Logic Logic Logic Logic 12 nsWhat’s the latency for one unit of work? What’s the

  6. Critical path review • Critical path is the longest possible delay between two registers in a design. • The critical path sets the cycle time, since the cycle time must be long enough for a signal to traverse the critical path. • Lengthening or shortening non-critical paths does not change performance • Ideally, all paths are about the same length Logic 6

  7. Pipelining and Logic Logic Logic Logic Logic Logic Logic Logic Logic Logic Logic Logic Logic • Hopefully, critical path reduced by 1/3 7

  8. Limits on Pipelining Logic Logic Logic Logic Logic Logic • You cannot pipeline forever • Some logic cannot be pipelined arbitrarily -- Memories • Some logic is inconvenient to pipeline. • How do you insert a register in the middle of an adder? • Registers have a cost • They cost area -- choose “narrow points” in the logic • They cost time • Extra logic delay • Set-up and hold times. 8

  9. Pipelining Overhead • Logic Delay (LD) -- How long does the logic take (i.e., the useful part) • Set up time (ST) -- How long before the clock edge do the inputs to a register need be ready? • Register delay (RD) -- Delay through the internals of the register. • BaseCT -- cycle time before pipelining • BaseCT = LD + ST + RD. • Total delay = BaseCT • PipeCT -- cycle time after pipelining N times • PipeCT = ? • Total delay = ? 9

  10. Pipelining Overhead • Logic Delay (LD) -- How long does the logic take (i.e., the useful part) • Set up time (ST) -- How long before the clock edge do the inputs to a register need be ready? • Register delay (RD) -- Delay through the internals of the register. • BaseCT -- cycle time before pipelining • BaseCT = LD + ST + RD. • PipeCT -- cycle time after pipelining N times • PipeCT = ST + RD + LD/N • Total time = N*ST + N*RD + LD 10

  11. Pipelining Difficulties • You cannot put registers just anywhere • You may not have access to the internal of some block • Ex: memories • Balancing the path lengths is challenging • The there are many more potential critical paths in a pipelined design. 11

  12. Pipelining Difficulties Fast Slow Logic Logic Slow Logic Fast Logic Fast Slow Logic Logic Slow Logic Fast Logic • The critical path only went down a bit. 12

  13. How to pipeline a processor • Break each instruction into pieces -- remember the basic algorithm for execution • Fetch • Decode • Collect arguments • Execute • Write back results • Compute next PC • The “classic 5-stage MIPS pipeline” • Fetch -- read the instruction • Decode -- decode and read from the register file • Execute -- Perform arithmetic ops and address calculations • Memory -- access data memory. • Write back-- Store results in the register file. 13

  14. Pipelining a processor Fetch Decode Mem Write EX back Fetch Decode Mem Write EX back 14

  15. Impact of Pipelining • Break the processor into P pipe stages • What happens to latency? • L = Inst * CPI * CycleTime • The cycle time = ? • CPI = ? 15

  16. Impact of Pipelining • Break the processor into P pipe stages • What happens to latency? • L = Inst * CPI * CycleTime • The cycle time = CT/P • CPI = 1 • CPI is an average: Cycles/instructions • When # of instructions is large, CPI = 1 • If just one instruction, CPI = P 16

  17. Pipelined Datapath Add 4 Add Shi< le< 2 Read Addr 1 Instruc(on Data Register Read Memory Memory Data 1 Read Addr 2 Read File Read PC Address Address ALU Write Addr Data Read Data 2 Write Data Write Data Sign Extend 16 32

  18. Pipelined Datapath Add 4 Add Shi< le< 2 Read Addr 1 Instruc(on Data Read Register Memory Memory Data 1 IFetch/Dec Read Addr 2 Read File Exec/Mem Dec/Exec Read ALU PC Address Address Write Addr Data Mem/WB Read Data 2 Write Data Write Data Sign Extend 16 32

  19. Pipelined Datapath Add 4 Add Shi< le< 2 Read Addr 1 Instruc(on Data Register Read Memory Memory Data 1 Read Addr 2 Read File Read Address Address ALU Data Write Addr Read Data 2 Write Data Write Data Sign Extend 16 32 add … lw … Sub… Sub …. Add … Add …

  20. Pipelined Datapath Add 4 Add Shi< le< 2 Read Addr 1 Instruc(on Data Register Read Memory Memory Data 1 Read Addr 2 Read File Read ALU Address Address Data Write Addr Read Data 2 Write Data Write Data Sign Extend 16 32 add … lw … Sub… Sub …. Add … Add …

  21. Pipelined Datapath Add 4 Add Shi< le< 2 Read Addr 1 Instruc(on Data Register Read Memory Memory Data 1 Read Addr 2 Read File Read ALU Address Address Data Write Addr Read Data 2 Write Data Write Data Sign Extend 16 32 add … lw … Sub… Sub …. Add … Add …

  22. Pipelined Datapath Add 4 Add Shi< le< 2 Read Addr 1 Instruc(on Data Register Read Memory Memory Data 1 Read Addr 2 File Read Read ALU Address Address Data Write Addr Read Data 2 Write Data Write Data Sign Extend 16 32 add … lw … Sub… Sub …. Add … Add …

  23. Pipelined Datapath Add 4 Add Shi< le< 2 Read Addr 1 Instruc(on Data Register Read Memory Memory Data 1 Read Addr 2 File Read Read Address ALU Address Data Write Addr Read Data 2 Write Data Write Data Sign Extend 16 32 add … lw … Subi… Sub …. Add … Add …

  24. Simple Pipelining Control Fetch Fetch Decode Mem Write EX back Fetch Fetch Fetch Fetch Fetch Decode Mem Write EX back • Compute all the control bits in decode, then pass them from stage to stage. It won’t stay this simple... 24

  25. Pipelining is Tricky • If all the data flows in one direction, pipelining is relatively easy. • Not so, for processors. • Decode and write back both access the register file. • Branch instructions affect the next PC • Instructions need values computed by previous instructions 25

  26. Not just tricky, Hazardous! • Hazards are situations where pipelining does not work as elegantly as we would like • Caused by backward flowing signals • Or by lack of available hardware • Three kinds • Data hazards -- an input is not available on the cycle it is needed • Control hazards -- the next instruction is not known • Structural hazards -- we have run out of a hardware resource • Detecting, avoiding, and recovering from these hazards is what makes processor design hard. • That, and the Xilinx tools ;-) 26

  27. A Structural Hazard • Both the decode and write back stage have to access the register file. • There is only one registers file. A structural hazard!! • Solution: Write early, read late • Writes occur at the clock edge and complete long before the end of the cycle • This leave enough time for the outputs to settle for the reads. • Hazard avoided! Fetch Decode Mem Write • EX back 27

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend