24
Lecture 41: Introduction to Reconfigurable Computing Michael Le, Sp07 Head TA April 30, 2007 inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Slides Courtesy of Hayden So, Sp06 CS61c Head TA

Lecture 41: Introduction to Reconfigurable Computing

Embed Size (px)

DESCRIPTION

inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures. Lecture 41: Introduction to Reconfigurable Computing. Michael Le, Sp07 Head TA April 30, 2007. Slides Courtesy of Hayden So, Sp06 CS61c Head TA. Following the tech news tradition…. - PowerPoint PPT Presentation

Citation preview

Lecture 41: Introduction to Reconfigurable Computing

Michael Le, Sp07 Head TA

April 30, 2007

inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures

Slides Courtesy of Hayden So, Sp06 CS61c Head TA

2CS61C L41 Intro to Reconfigurable Computing

Following the tech news tradition…Following the tech news tradition…

NeuroSky of San Jose, CA aims to add more realistic elements to video games by using brain wave-reading technology to help game developers make gaming more realistic.

http://news.yahoo.com/s/ap/20070430/ap_on_hi_te/mind_reading_toys

3CS61C L41 Intro to Reconfigurable Computing

OutlineOutline

Computing… What does it mean? Processor vs ASIC FPGA-based Reconfigurable Computing Real stuff

4CS61C L41 Intro to Reconfigurable Computing

Back to basics…Back to basics…

What does the word “computer” mean to you?Your $700 box sitting under your desk at

home?The $2000 laptop you are using to check

email right now?The 5-stage pipeline processor?

5CS61C L41 Intro to Reconfigurable Computing

Informal DefinitionInformal Definition

A computer is a machine that computesadd, subtract, logical operations, decisions

What have we learned about computing in this semester?

6CS61C L41 Intro to Reconfigurable Computing

Calculating Class Grades*Calculating Class Grades*grade = 0.1 mt1 + 0.2 mt2 +0.3 hw + 0.4 proj;

grade = 0;tmp = 0.1 mt1;grade = grade + tmp;tmp = 0.2 mt2;grade = grade + tmp;tmp = 0.3 hw;grade = grade + tmp;tmp = 0.4 proj;grade = grade + tmp;

Time

*This is not how we are going to calculate your grades

7CS61C L41 Intro to Reconfigurable Computing

Computing Final Grade (2)Computing Final Grade (2)

0.1 mt1 0.2 mt2 0.3 hw 0.4 proj

× × × ×

+ +

+

grade

Time

SPACE

8CS61C L41 Intro to Reconfigurable Computing

2 Ways to Compute2 Ways to Compute

TIME

××

××

+

+

+

Processor (CS61C)

Application Specific Integrated CircuitASIC (EE141)

×

0.1

mt1

tmp

grade

0.1

mt1

tmp

grade

clock cycle 1

+

0.2

mt2

tmp

grade

clock cycle 2

×

0.2

mt2

tmp

grade

clock cycle 3

+ +

0.4

proj

tmp

grade

0.4

proj

tmp

grade

clock cycle n

9CS61C L41 Intro to Reconfigurable Computing

Processor vs ASICProcessor vs ASIC

Take longer to computeslow

Flexible Need instructions to

determine what to do on each cycle

Space is bounded

Take shorter time to compute fast

Not Flexible No instruction

Same calculation every cycle

Space unboundedBranches?

Temporal Computing Spatial Computing

10CS61C L41 Intro to Reconfigurable Computing

Visualizing Spatial ComputingVisualizing Spatial Computing

AMD Opteron 64-bit processor 1MB L2 Cache

193 mm sq 0.18 micron CMOS

89W @ 1.8GHz ~3 Op / cycle (int op)

Full Custom ASIC 4x4 Single Value Decomposition

3.5 mm sq 90nm CMOS

34mW @ 100 MHz clock 70 GOPS = 700 Op / cycle

Actual computation

11CS61C L41 Intro to Reconfigurable Computing

Between Temporal & Spatial ComputingBetween Temporal & Spatial Computing

Temporal Spatial

SingleProcessor

ASIC

• Slow• Flexible

• Fast• Inflexible

ReconfigurableComputing

??

12CS61C L41 Intro to Reconfigurable Computing

Reconfigurable ComputingReconfigurable Computing

No standard definition “Computing via a post-fabrication and spatially

programmed connection of processing elements.” -John Wawrzynek Sp04

A computer that can RE-configure itself to perform computation spatially as neededHow often do we RE-configure?Coarse-grain? Fine-grain?

Example: FPGA

13CS61C L41 Intro to Reconfigurable Computing

Introduction to the FPGAIntroduction to the FPGA

Field Programmable Gate Array Began as ASIC replacements

ASIC that can be configured “in the field”At power up, configuration is loaded onto the chipChip acts as an ASIC until power down

Modern FPGA more like computersExploit dynamic, partial reconfigurationEmbedded processors

Xilinx, Altera are 2 major market leaders

14CS61C L41 Intro to Reconfigurable Computing

The LUTThe LUT

LUT: Lookup Table A direct implementation of a truth table

Recall a TT uniquely defines a circuit

An n-LUT implements any n-input combinational logicDepends on LUT configuration

A B C D Q

0 0 0 0 00 0 0 1 0 …1 1 0 1 11 1 1 0 01 1 1 1 0

15CS61C L41 Intro to Reconfigurable Computing

Making a 2-LUT from Truth TableMaking a 2-LUT from Truth Table

A B

0 00 11 01 1

16 possible ways

4 configuration bits

OR

0111

TRU

E

FALS

EA

ND

NA

ND

0 00 00 00 1

1 11 11 10 1

16CS61C L41 Intro to Reconfigurable Computing

2-LUT: CL and MUX Based2-LUT: CL and MUX Based

0 0 0 0 0 0 00 0 0 0 0 1 00 0 0 0 1 0 00 0 0 0 1 1 00 0 0 1 0 0 00 0 0 1 0 1 0

1 1 1 1 1 0 11 1 1 1 1 1 1

cfg3

cfg2

cfg1

cfg0

A B Q

1

0

1

0

1

0

cfg0

cfg1

cfg2

cfg3

B A

Q

17CS61C L41 Intro to Reconfigurable Computing

LUTs in Real LifeLUTs in Real Life

3-LUT and 4-LUT are most common SRAM based Learn, and use, them a lot in CS150

18CS61C L41 Intro to Reconfigurable Computing

Sequential logicSequential logic

Connecting multiple LUTs gives us ANY combinational logic we want to implement

We need Flip-Flop to build sequential circuits

FF are so important that they are included natively on FPGAs next to each LUT

LUT + FF + … = LB (Logic Block)

clk

CLCL

19CS61C L41 Intro to Reconfigurable Computing

Logic BlockLogic Block

Can build any 4-input circuitSynchronous OR Asynchronous

Combining Logic Blocks => ANY synchronous digital circuit

How to we build bigger circuit?

1

0LUT FF

D3D2D1D0

LUTCFG CLK MUXCFG

OUT

20CS61C L41 Intro to Reconfigurable Computing

Routing of FPGARouting of FPGA

With enough smartness in placement and routing, we can implement any synchronous digital circuits!

LB LB LB LB

LB LB LB LB

LB LB LB LB

21CS61C L41 Intro to Reconfigurable Computing

Example: Xilinx Virtex2pro xc2vp70Example: Xilinx Virtex2pro xc2vp70

74,448 Logic Cells (LB) 2 PowerPC cores 328 18x18 bits multipliers 5904 Kbytes on chip memory 8 Digital Clock Managers 996 I/O pins 16 high speed serial I/O

ports

22CS61C L41 Intro to Reconfigurable Computing

Die Photo of a FPGADie Photo of a FPGA

Spartan-3 90nm CMOS

Entire Chip is for Computation

23CS61C L41 Intro to Reconfigurable Computing

Real Stuff: BEE2Real Stuff: BEE2

Developed at Berkeley Berkeley Wireless

Research Center

5 Xilinx xc2vp70 40Gbytes DDR2 memory Used for research in:

Wireless Astro-Physics (SETI) Bioinformatics Speech Recognition

24CS61C L41 Intro to Reconfigurable Computing

ConclusionConclusion

The Processor is NOT the only way to do computation

Reconfigurable computers allows different tradeoffs among speed, flexibility, cost, power, etc

FPGA offers fine-grain reconfigurability