computer structure 2013 – introduction 1 mamas – computer structure 234267 lecturers: lihu...

23
Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson, Randi Katz, Patterson, Gabriel Loh

Upload: christal-lynch

Post on 05-Jan-2016

220 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction1

MAMAS – Computer Structure234267

Lecturers: Lihu Rappoport

Adi Yoaz

Some of the slides were taken from Avi Mendelson, Randi Katz, Patterson, Gabriel Loh

Page 2: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction2

General Course Information Grade

20% : 4 exercises (all mandatory) תקף

• Submission in pairs

80% Final exam No midterm exam

Course web site http://webcourse.cs.technion.ac.il/234267 Foils will be on the web several days before the

class

Page 3: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction3

Class Focus CPU

Introduction: performance, instruction set (RISC vs. CISC)

Pipeline, hazards Branch prediction Out-of-order execution

Memory Hierarchy Cache Main memory Virtual Memory

System Motherboard & chipset, DRAM, I/O, Disk, peripherals Power considerations

Page 4: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction4

Computer System – Sandy Bridge

mouseLAN

LanAdap

South Bridge (PCH)Audio Codec

DVDDrive

HardDiskP

ara

lle

l P

ort

Se

ria

l P

ort

FloppyDrive

PS/2keybrd/mouse

CacheDDRIII

Channel 1 Mem BUSDDRIII

Channel 2

Memory controller Core

Core

Display port

External Graphics

Card

PCI express ×16

GFX

Display link

2133-1066 MHz

Line inLine out

S/PDIF inS/PDIF out

Super I/OLPC

USB SATA SATA

BIOSPCI express ×1

expslots

System Agent

4×DMI

D-sub

HDMI

DVI

Page 5: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction5

Architecture & Microarchitecture

ArchitectureThe processor features seen by the “user” Instruction set, addressing modes, data width, …

Micro-architectureThe way of implementation of a processor Caches size and structure, number of execution

units, … Timing is considered uArch (though it is user

visible)

Processors with different uArch can support the same Architecture

Page 6: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction6

Compatibility Backward compatibility

New hardware can run existing software• Core2 Duo can run SW written for Pentium4,

PentiumM, Pentium III, Pentium II, Pentium, 486, 386, 268

Forward compatibility New software can run on existing hardware Example: new software written with AVXTM runs on

older processor which does not support AVXTM

Commonly supports one or two generations behind

Architecture independent SW JIT – just in time compiler: Java and .NET Binary translation

Page 7: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction7

Moore’s Law

The number of transistorsdoubles every ~2 years

Page 8: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction8

CPI – Cycles Per Instruction CPUs work according to a clock signal

Clock cycle is measured in nsec (10-9 of a second) Clock frequency (= 1/clock cycle) measured in GHz (109

cyc/sec)

Instruction Count (IC) Total number of instructions executed in the program

CPI – Cycles Per Instruction Average #cycles per Instruction (in a given program)

IPC (= 1/CPI) : Instructions per cycles

CPI =#cycles required to execute the program

IC

Page 9: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction9

Calculating the CPI of a Program

ICi: #times instruction of type i is executed in the program

IC: #instruction executed in the program:

Fi: relative frequency of instruction of type i : Fi = ICi/IC

CPIi – #cycles to execute instruction of type i e.g.: CPIadd = 1, CPImul = 3

#cycles required to execute the entire program:

CPI:

CPIcyc

IC

CPI IC

ICCPI

IC

ICCPI F

i ii

n

ii

i

n

i ii

n

# 1

1 1

ICCPIICCPIcycn

iii *#

1

IC ICii

n

1

Page 10: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction10

CPU Time CPU Time - time required to execute a

program

CPU Time = IC CPI clock cycle

Our goal: minimize CPU Time Minimize clock cycle: more GHz (process, circuit,

uArch)

Minimize CPI: uArch (e.g.: more

execution units)

Minimize IC: architecture (e.g.: AVXTM)

Page 11: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction11

Speedupoverall =texe

t’exe

=1

S

F(1 – F) +

Suppose enhancement E accelerates a fraction F of the task by a factor S, and the remainder of the task is unaffected, then:

Amdahl’s Law

t’exe = texe ×S

F(1 – F) +

texe t’exe

Page 12: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction12

• Floating point instructions improved to run at 2×, but only 10% of executed instructions are FP

Speedupoverall =1

0.95= 1.053

t’exe = texe × (0.9 + 0.1 / 2) = 0.95 × texe

Corollary:

Make The Common Case Fast

Amdahl’s Law: Example

Page 13: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction13

Comparing Performance Peak Performance

MIPS, GFLOPS Often not useful: unachievable / unsustainable in

practice

Benchmarks Real applications, or representative parts of real apps Synthetic benchmarks representative parts of real apps Targeted at the specific system usages SPEC INT – integer applications

• Data compression, C complier, Perl interpreter, database system, chess-playing, Text-processing, …

SPEC FP – floating point applications• Mostly important scientific applications

TPC Benchmarks• Measure transaction-processing throughput

Page 14: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction14

-2%

0%

2%

4%

6%

Evaluating Performance of future CPUs

Use a performance simulator to evaluate the performance of a new feature / algorithm Models the uarch to a great detail Run 100’s of representative applications

Produce the performance s-curve Sort the applications according to the IPC increase Baseline (0) is the processor without the new

feature

-4%

-3%

-2%

-1%

0%

1%

2%

3%

Negativeoutliers

Positiveoutliers

Bad S-curve

Small negativeoutliers

Positiveoutliers

Good S-curve

Page 15: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction15

The ISA is what the user / compiler see

The HW implements the ISA

instruction set

software

hardware

Instruction Set Design

Page 16: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction16

ISA Considerations Reduce the IC to reduce execution time

E.g., a single vector instruction performs the work of multiple scalar instructions

Simple instructions simpler HW implementation Higher frequency, lower power, lower cost

Code size Long instructions take more time to fetch Longer instructions require a larger memory

• Important in small devices, e.g., cell phones

Page 17: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction17

Architectural Consideration Example

Immediate data size

1% of data values > 16-bits 12 – 16 bits of needed

0%

10%

20%

30%

0 1 2 3 4 5 6 7 8 9

10

11 12

13

14

15

Immediate data bits

Int. Avg.

FP Avg.

Page 18: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction18

Software Specific Extensions Extend arch to accelerate exec of specific apps

Reduce IC

Example: SSETM – Streaming SIMD Extensions 128-bit packed (vector) / scalar single precision FP

(4×32) Introduced on Pentium® III on ’99 8 new 128 bit registers (XMM0 – XMM7) Accelerates graphics, video, scientific calculations, …

Packed: Scalar:

x0x1x2x3

y0y1y2y3

x0+y0x1+y1x2+y2x3+y3

+

128-bits

x0x1x2x3

y0y1y2y3

x0+y0y1y2y3

+

128-bits

Page 19: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction19

CISC Processors CISC – Complex Instruction Set Computer

The idea: a high level machine language Example: x86

Characteristic Many instruction types, with a many addressing

modes Some of the instructions are complex

• Execute complex tasks• Require many cycles

ALU operations directly on memory• Only a few registers, in many cases not orthogonal

Variable length instructions• common instructions get short codes save code

length

Page 20: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction20

Rank instruction % of total executed

1 load 22%

2 conditional branch 20%

3 compare 16%

4 store 12%

5 add 8%

6 and 6%

7 sub 5%

8 move register-register 4%

9 call 1%

10 return 1%

Total 96%

Simple instructions dominate instruction frequency

Top 10 x86 Instructions

Page 21: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction21

CISC Drawbacks Complex instructions and complex addressing

modes complicates the processor slows down the simple, common instructions contradicts Make The Common Case Fast

Not compiler friendly Non orthogonal registers Unused complex addressing modes

Variable length instructions are a pain Difficult to decode few instructions in parallel

• As long as instruction is not decoded, its length is unknown Unknown where the inst. ends, and where the next inst. starts

An instruction may cross a cache line or a page

Page 22: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction22

RISC Processors RISC – Reduced Instruction Set Computer

The idea: simple instructions enable fast hardware

Characteristics A small instruction set, with few instruction formats Simple instructions that execute simple tasks

• Most of them require a single cycle (with pipeline) A few indexing methods ALU operations on registers only

• Memory is accessed using Load and Store instructions only

Many orthogonal registers – all instructions and all addressing modes available with any register

Three address machine: Add dst, src1, src2 Fixed length instructions

Complier friendly – easier to utilize the ISA Orthogonal, simple

Page 23: Computer Structure 2013 – Introduction 1 MAMAS – Computer Structure 234267 Lecturers: Lihu Rappoport Adi Yoaz Some of the slides were taken from Avi Mendelson,

Computer Structure 2013 – Introduction23

RISC Processors (Cont.) Simple architecture Simple micro-architecture

Simple, small and fast control logic Simpler to design and validate Leave space for large on die caches Shorten time-to-market

Existing RISC processor are not “pure” RISC E.g., support division which takes many cycles Examples: MIPSTM, SparcTM, AlphaTM, PowerTM

Modern CISC processors use RISC arch ideas Internally translate the CISC instructions into RISC-

like operations• the inside core looks much like that of a RISC

processor