Top Banner

of 20

EC 252 EC 252 L08 Processor Performance

Apr 06, 2018

Download

Documents

Gagan Gill
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    1/20

    Chapter 1

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    2/20

    Understanding Performance

    Algorithm

    Determines number of operations executed

    Programming language, compiler, architecture Determine number of machine instructions executed

    per operation

    Chapter 1 Computer Abstractions and Technology 2

    Processor and memory system Determine how fast instructions are executed

    I/O system (including OS)

    Determines how fast I/O operations are executed

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    3/20

    Defining Performance

    Which airplane has the best performance?

    Douglas

    DC-8-50

    BAC/Sud

    Concorde

    Boeing 747

    Boeing 777

    Douglas DC-

    8-50

    BAC/Sud

    Concorde

    Boeing 747

    Boeing 777

    1.4Performance

    Chapter 1 Computer Abstractions and Technology 3

    0 100 200 300 400 500

    Passenger Capacity

    0 2000 4000 6000 8000 10000

    Cruising Range (miles)

    0 500 1000 1500

    Douglas

    DC-8-50

    BAC/SudConcorde

    Boeing 747

    Boeing 777

    Cruising Speed (mph)

    0 100000 200000 300000 400000

    Douglas DC-

    8-50

    BAC/SudConcorde

    Boeing 747

    Boeing 777

    Passengers x mph

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    4/20

    Response Time and Throughput

    Response time

    How long it takes to do a task

    Throughput Total work done per unit time

    e.g., tasks/transactions/ per hour

    Chapter 1 Computer Abstractions and Technology 4

    How are response time and throughput affectedby

    Replacing the processor with a faster version?

    Adding more processors?

    Well focus on response time for now

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    5/20

    Relative Performance

    Define Performance = 1/Execution Time

    X is n time faster than Y

    n== XY

    YX

    timeExecutiontimeExecution

    ePerformancePerformanc

    Chapter 1 Computer Abstractions and Technology 5

    Example: time taken to run a program

    10s on A, 15s on B

    Execution TimeB/ Execution TimeA= 15s / 10s = 1.5

    So A is 1.5 times faster than B

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    6/20

    Measuring Execution Time

    Elapsed time Total response time, including all aspects

    Processing, I/O, OS overhead, idle time Determines system performance

    CPU time

    Chapter 1 Computer Abstractions and Technology 6

    Time spent processing a given job

    Discounts I/O time, other jobs shares

    Comprises user CPU time and system CPU

    time Different programs are affected differently by

    CPU and system performance

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    7/20

    CPU Clocking

    Operation of digital hardware governed by a

    constant-rate clock

    Clock (cycles)

    Data transfer

    Clock period

    Chapter 1 Computer Abstractions and Technology 7

    and computationUpdate state

    Clock period: duration of a clock cycle

    e.g., 250ps = 0.25ns = 2501012s

    Clock frequency (rate): cycles per second

    e.g., 4.0GHz = 4000MHz = 4.0109Hz

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    8/20

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    9/20

    CPU Time Example

    Computer A: 2GHz clock, 10s CPU time

    Designing Computer B

    Aim for 6s CPU time Can do faster clock, but causes 1.2 clock cycles

    How fast must Computer B clock be?

    Chapter 1 Computer Abstractions and Technology 9

    4GHz6s

    1024

    6s

    10201.2RateClock

    10202GHz10s

    RateClockTimeCPUCyclesClock

    6s

    .

    TimeCPU

    RateClock

    99

    B

    9

    AAA

    A

    B

    BB

    =

    =

    =

    ==

    =

    ==

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    10/20

    Instruction Count and CPI

    RateClock

    CPICountnInstructio

    TimeCycleClockCPICountnInstructioTimeCPU

    nInstructioperCyclesCountnInstructioCyclesClock

    =

    =

    =

    Chapter 1 Computer Abstractions and Technology 10

    Instruction Count for a program Determined by program, ISA and compiler

    Average cycles per instruction

    Determined by CPU hardware

    If different instructions have different CPI

    Average CPI affected by instruction mix

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    11/20

    CPI Example

    Computer A: Cycle Time = 250ps, CPI = 2.0

    Computer B: Cycle Time = 500ps, CPI = 1.2

    Same ISA Which is faster, and by how much?

    =

    Chapter 1 Computer Abstractions and Technology 11

    1.2500psI

    600psI

    ATimeCPU

    BTimeCPU

    600psI500ps1.2I

    BTimeCycle

    BCPICountnInstructio

    BTimeCPU

    500psI250ps2.0I

    =

    =

    ==

    =

    == A is faster

    by this much

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    12/20

    CPI in More Detail

    If different instruction classes take differentnumbers of cycles

    =

    =

    n

    1i

    ii )CountnInstructio(CPICyclesClock

    Chapter 1 Computer Abstractions and Technology 12

    Weighted average CPI

    =

    ==

    n

    1i

    ii

    CountnInstructio

    CountnInstructioCPI

    CountnInstructio

    CyclesClockCPI

    Relative frequency

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    13/20

    CPI Example

    Alternative compiled code sequences usinginstructions in classes A, B, C

    Class A B C

    CPI for class 1 2 3

    IC in sequence 1 2 1 2

    Chapter 1 Computer Abstractions and Technology 13

    IC in sequence 2 4 1 1

    Sequence 1: IC = 5

    Clock Cycles= 21 + 12 + 23= 10

    Avg. CPI = 10/5 = 2.0

    Sequence 2: IC = 6

    Clock Cycles= 41 + 12 + 13= 9

    Avg. CPI = 9/6 = 1.5

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    14/20

    Performance Summary

    The BIG Picture

    cycleClockSeconds

    nInstructiocyclesClock

    ProgramnsInstructioTimeCPU =

    Chapter 1 Computer Abstractions and Technology 14

    Performance depends on Algorithm: affects IC, possibly CPI

    Programming language: affects IC, CPI

    Compiler: affects IC, CPI

    Instruction set architecture: affects IC, CPI, Tc

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    15/20

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    16/20

    Reducing Power

    Suppose a new CPU has

    85% of capacitive load of old CPU

    15% voltage and 15% frequency reduction

    0.85F0.85)(V0.85CP 4old2

    oldoldnew==

    =

    Chapter 1 Computer Abstractions and Technology 16

    ..

    FVCP old2

    oldoldold

    The power wall

    We cant reduce voltage further

    We cant remove more heat

    How else can we improve performance?

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    17/20

    Uniprocessor Performance1.6Th

    eSeaChang

    e:TheSwitc

    Chapter 1 Computer Abstractions and Technology 17

    htoMultiproc

    essors

    Constrained by power, instruction-level parallelism,memory latency

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    18/20

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    19/20

    Inside the Processor

    AMD Barcelona: 4 processor cores

    Chapter 1 Computer Abstractions and Technology 19

  • 8/3/2019 EC 252 EC 252 L08 Processor Performance

    20/20

    Pitfall: Amdahls Law

    Improving an aspect of a computer and

    expecting a proportional improvement in

    overall performance

    1.8Fa

    llaciesandP

    itfalls

    unaffectedaffected

    improved Tfactortimprovemen

    TT +=

    Chapter 1 Computer Abstractions and Technology 20

    208020 +=n

    Cant be done!

    Example: multiply accounts for 80s/100s How much improvement in multiply performance to

    get 5 overall?

    Corollary: make the common case fast