A Future for Parallel Computer Architectures

53
© 2004 Mark D. Hill Wisconsin Multifacet Project A Future for Parallel Computer Architectures Mark D. Hill Computer Sciences Department University of Wisconsin—Madison Multifacet Project ( www.cs.wisc.edu/multifacet ) August 2004 Full Disclosure: Consult for Sun & US NSF

Transcript of A Future for Parallel Computer Architectures

Page 1: A Future for Parallel Computer Architectures

© 2004 Mark D. Hill Wisconsin Multifacet Project

A Future forParallel Computer Architectures

Mark D. Hill

Computer Sciences DepartmentUniversity of Wisconsin—Madison

Multifacet Project (www.cs.wisc.edu/multifacet)

August 2004

Full Disclosure: Consult for Sun & US NSF

Page 2: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project2 © 2004 Mark D. Hill

Summary

• Issues– Moore’s Law, etc.– Instruction Level Parallelism for More Performance– But Memory Latency Longer (e.g., 200 FP multiplies)

• Must Exploit Memory Level Parallelism– At Thread: Runahead & Continual Flow Pipeline– At Processor: Simultaneous Multithreading– At Chip: Chip Multiprocessing

Page 3: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project3 © 2004 Mark D. Hill

Outline

• Computer Architecture Drivers– Moore’s Law, Microprocessors, & Caching

• Instruction Level Parallelism (ILP) Review

• Memory Level Parallelism (MLP)

• Improving MLP of Thread

• Improving MLP of a Core or Chip

• CMP Systems

Page 4: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project4 © 2004 Mark D. Hill

(Technologists) Moore’s Law

Page 5: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project5 © 2004 Mark D. Hill

What If Your Salary?

• Parameters– $16 base– 59% growth/year– 40 years

• Initially $16 buy book• 3rd year’s $64 buy computer game• 16th year’s $27,000 buy car• 22nd year’s $430,000 buy house• 40th year’s > billion dollars buy a lot

You have to find fundamental new ways to spend money!

Page 6: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project6 © 2004 Mark D. Hill

Microprocessor

• First Microprocessor in 1971– Processor on one chip– Intel 4004– 2300 transistors– Barely a processor– Could access 300 bytes

of memory (0.0003 megabytes)

• Use more and faster transistors in parallel

Page 7: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project7 © 2004 Mark D. Hill

Other “Moore’s Laws”

• Other technologies improving rapidly– Magnetic disk capacity– DRAM capacity– Fiber-optic network bandwidth

• Other aspects improving slowly– Delay to memory– Delay to disk– Delay across networks

• Computer Implementor’s Challenge– Design with dissimilarly expanding resources– To Double computer performance every two years– A.k.a., (Popular) Moore’s Law

Page 8: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project8 © 2004 Mark D. Hill

Caching & Memory Hierarchies, cont.

• VAX-11/780– 1 Instruction = Memory

• Now– 100s Instructions = Memory

• Caching Applied Recursively– Registers– Level-one cache– Level-two cache– Memory– Disk– (File Server)– (Proxy Cache)

Page 9: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project9 © 2004 Mark D. Hill

Outline

• Computer Architecture Drivers

• Instruction Level Parallelism (ILP) Review– Pipelining & Out-of-Order– Intel P3, P4, & Banias

• Memory Level Parallelism (MLP)

• Improving MLP of Thread

• Improving MLP of a Core or Chip

• CMP Systems

Page 10: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project10 © 2004 Mark D. Hill

Instruction Level Parallelism (ILP) 101

• Non-Pipelined (Faster via Bit Level Parallelism (BLP))

• Pipelined (ILP + BLP; 1st microprocessors RISC)Time

In

strn

s

Time

In

strn

s

Page 11: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project11 © 2004 Mark D. Hill

Instruction Level Parallelism 102

• SuperScalar (& Pipelined)

• Add Cache Misses in red

Time

In

strn

s

Time

In

strn

s What if data independent?

Page 12: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project12 © 2004 Mark D. Hill

Instruction Level Parallelism 103

• Out-of-Order (& SuperScalar & Pipelined)

• In-order fetch, decode, rename, & issuing of instructionswith good branch prediction

• Out-of-order speculative execution of instructions in “window”,honoring data dependencies

• In-order retirement,preserving sequential instruction semantics

Time

In

strn

s

Page 13: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project13 © 2004 Mark D. Hill

Out-of-Order Example: Intel x86 P6 Core

• “CISC” Twist to Out-of-Order– In-order front end cracks x86 instructions

into micro-ops (like RISC instructions)– Out-of-order execution– In-Order retirement of micro-ops in x86 instruction groups

• Used in Pentium Pro, II, & III– 3-way superscalar of micro-ops– 10-stage pipeline (for branch misprediction penalty)– Sophisticated branch prediction– Deep pipeline allowed scaling for many generations

Page 14: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project14 © 2004 Mark D. Hill

Pentium 4 Core [Hinton 2001]

• Follow basic approach of P6 core

• Trace Cache stores dynamic micro-op sequences

• 20-stage pipeline (for branch misprediction penalty)

• 128 active micro-ops (48 loads & 24 stores)

• Deep pipeline to allow scaling for many generations

Page 15: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project15 © 2004 Mark D. Hill

Intel Kills Pentium 4 Roadmap

• Why? I can speculate

• Too Much Power?– More transistors– Higher-frequency transistors– Designed before power became first-order design constraint

• Too Little Performance? Time/Program =– Instructions/Program * Cycles/Instruction * Time/Cycle

• For x86: Instructions/Cycle * Frequency• Pent4 Instruction/Cycle loss vs. Frequency gains?• Intel moving away from marketing with frequency!

Page 16: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project16 © 2004 Mark D. Hill

Pentium M / Banias [Gochman 2003]

• For laptops, but now more general– Key: Feature must add 1% performance for 3% power – Why: Increasing voltage for 1% perf. costs 3% power

• Techniques– Enhance Intel SpeedStep™– Shorter pipeline (more like P6)– Better branch predictor (e.g., loops)– Special handling of memory stack– Fused micro-ops– Lower power transistors (off critical path)

Page 17: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project17 © 2004 Mark D. Hill

What about Future for Intel & Others?

• Worry about power & energy (not this talk)

• Memory latency too great for out-of-order coresto tolerate (coming next)

Memory Level Parallelism for Thread, Processor, & Chip!

Page 18: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project18 © 2004 Mark D. Hill

Outline

• Computer Architecture Drivers

• Instruction Level Parallelism (ILP) Review

• Memory Level Parallelism (MLP)– Cause & Effect

• Improving MLP of Thread

• Improving MLP of a Core or Chip

• CMP Systems

Page 19: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project19 © 2004 Mark D. Hill

Out-of-Order w/ Slower Off-Chip Misses

• Out-of-Order (& Super-Scalar & Pipelined)

• But Off-Chip Misses are now hundreds of cycles

Time

In

strn

s

Good Case!

Time

In

strn

s

Page 20: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project20 © 2004 Mark D. Hill

Out-of-Order w/ Slower Off-Chip Misses

• More Realistic Case

• Why does yellow instruction block?– Assumes 4-instruction window (maximum outstanding)– Yellow instruction awaits “instruction - 4” (1st cache miss)– Actual widows are 32-64 instructions, but L2 miss slower

• Key Insight: Memory-Level Parallelism (MLP)[Chou, Fahs, & Abraham, ISCA 2004]

Time

In

strn

s

I1I2

I3I4

4-instrn window

Page 21: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project21 © 2004 Mark D. Hill

Out-of-Order & Memory Level Parallism (MLP)

• Good Case

• Bad Case

Compute & Memory Phases

Compute & Memory Phases

MLP = 2

MLP = 1

Page 22: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project22 © 2004 Mark D. Hill

MLP Model

• MLP = # Off-Chip Accesses / # Memory Phases

• Execution has Compute & Memory Phases– Compute Phase largely overlaps Memory Phase– In Limit as Memory Latency increases, …

• Compute Phase hidden by Memory Phase– Execution Time = # Memory Phases * Memory Latency

• Execution Time = (MLP / # Off-Chip Accesses) * Memory Latency

Page 23: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project23 © 2004 Mark D. Hill

MLP Action Items

• Execution Time = (MLP / # Off-Chip Accesses) * Memory Latency

• Reduce # Off-Chip Accesses– E.g., better caches or compression (Multifacet)

• Reduce Memory Latency– E.g., on-chip memory controller (AMD)

• Increase MLP (next slides)

• Processor changes that don’t affect MLP don’t help!

Page 24: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project24 © 2004 Mark D. Hill

What Limits MLP in Processor? [Chou et al.]

• Issue window and reorder buffer size

• Instruction fetch off-chip accesses

• Unresolvable mispredicted branches

• Load and branch issue restrictions

• Serializing instructions

Page 25: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project25 © 2004 Mark D. Hill

What Limits MLP in Program?

• Depending on data from off-chip memory accesses

• For addresses– Bad: Pointer chasing with poor locality– Good: Array where address calculation separate from data

• For unpredictable branch decisions– Bad: Branching on data values with poor locality– Good: Iterative loops with highly predictable branching

• But, as programmer, which accesses go off-chip?

• Also: very poor instruction locality & frequent system calls, context switches, etc.

Page 26: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project26 © 2004 Mark D. Hill

Outline

• Computer Architecture Drivers

• Instruction Level Parallelism (ILP) Review

• Memory Level Parallelism (MLP)

• Improving MLP of Thread– Runahead, Continual Flow Pipeline

• Improving MLP of a Core or Chip

• CMP Systems

Page 27: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project27 © 2004 Mark D. Hill

Runahead Example

• Base Out-of-Order, MLP = 1

• With Runahead, MLP = 2

I1I2

I3I4

4-instrn window

1. Normal mode

3. Runahead mode

2. Checkpoint

5. Normal mode (but faster)

4. Restore checkpoint

Page 28: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project28 © 2004 Mark D. Hill

Runahead Execution [Dundas ICS97, Mutlu HPCA03]

1. Execute normally until instruction M’s off-chip access blocks issue of more instructions

2. Checkpoint processor

3. Discard instruction M, set M’s destination register to poisoned, & speculatively Runahead– Instructions propagate poisoned from source to destination– Seek off-chip accesses to start prefetches & increase MLP

4. Restore checkpoint when off-chip access M returns

5. Resume normal execution (hopefully faster)

Page 29: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project29 © 2004 Mark D. Hill

Continual Flow Pipeline [Srinivasan ASPLOS04]

Simplified Example

Have off-chip access M free many resources, but SAVEKeep decoding instructionsSAVE instructions dependent on MExecute instructions independent of MWhen M completes, execute SAVED instructions

Page 30: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project30 © 2004 Mark D. Hill

Implications of Runahead, & Continual Flow

• Runahead– Discards dependent instructions– Speculatively executes independent instructions– When miss returns, re-executes dependent & independent instrns

• Continual Flow Pipeline– Saves dependent instructions– Executes independent instructions– When miss returns, executes only saved dependent instructions

• Assessment– Both allow MLP to break past window limits– Both limited by branch prediction accuracy on unresolved branches– Continual Flow Pipeline sounds even more appealing– But may not be worthwhile (vs. Runahead) & memory order issues

Page 31: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project31 © 2004 Mark D. Hill

Outline

• Computer Architecture Drivers

• Instruction Level Parallelism (ILP) Review

• Memory Level Parallelism (MLP)

• Improving MLP of Thread

• Improving MLP of a Core or Chip– Core: Simultaneous Multithreading– Chip: Chip Multiprocessing

• CMP Systems

Page 32: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project32 © 2004 Mark D. Hill

Getting MLP from Thread Level Parallelism

• Runahead & Continual Flow seek MLP for Thread

• More MLP for Processor?– More parallel off-chip accesses for a processor?– Yes: Simultaneous Multithreading

• More MLP for Chip?– More parallel off-chip accesses for a chip?– Yes: Chip Multiprocessing

• Exploit workload Thread Level Parallelism (TLP)

Page 33: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project33 © 2004 Mark D. Hill

Simultaneous Multithreading [U Washington]

• Turn a physical processor into S logical processors

• Need S copies of architectural state, S=2, 4, (8?)– PC, Registers, PSW, etc. (small!)

• Completely share– Caches, functional units, & datapaths

• Manage via threshold sharing, partition, etc.– Physical registers, issue queue, & reorder buffer

• Intel calls Hyperthreading in Pentium 4– 1.4x performance for S=2 with little area, but complexity– But Pentium 4 is now dead & no Hyperthreading in Banias

Page 34: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project34 © 2004 Mark D. Hill

Simultaneous Multithreading Assessment

• Programming– Supports finer-grained sharing than old-style MP – But gains less than S and S is small

• Have Multi-Threaded Workload– Hides off-chip latencies better than Runahead– E.g, 4 threads w/ MLP 1.5 each MLP = 6

• Have Single-Threaded Workload– Base SMT No Help– Many “Helper Thread” Ideas

• Expect SMT in processors for servers• Probably SMT even in processors for clients

Page 35: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project35 © 2004 Mark D. Hill

Want to Spend More Transistors

• Not worthwhile to spend it all on cache

• Replicate Processor

• Private L1 Caches– Low latency– High bandwidth

• Shared L2 Cache– Larger than if private

Page 36: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project36 © 2004 Mark D. Hill

Piranha Processing Node

Alpha core: 1-issue, in-order, 500MHzCPU

Next few slides from

Luiz Barosso’s ISCA 2000 presentation of

Piranha: A Scalable ArchitectureBased on Single-Chip Multiprocessing

Page 37: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project37 © 2004 Mark D. Hill

Piranha Processing Node

CPU

Alpha core: 1-issue, in-order, 500MHzL1 caches: I&D, 64KB, 2-way

D$I$

Page 38: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project38 © 2004 Mark D. Hill

Piranha Processing Node

CPU

Alpha core: 1-issue, in-order, 500MHzL1 caches: I&D, 64KB, 2-wayIntra-chip switch (ICS) 32GB/sec, 1-cycle delayD$I$

ICS

CPU

D$I$

CPU

D$I$

CPU

D$I$

CPU

D$I$

CPU

D$I$

CPU

D$I$

CPU

D$I$

Page 39: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project39 © 2004 Mark D. Hill

Piranha Processing Node

CPU

Alpha core: 1-issue, in-order, 500MHzL1 caches: I&D, 64KB, 2-wayIntra-chip switch (ICS) 32GB/sec, 1-cycle delayL2 cache: shared, 1MB, 8-way

D$I$

L2$

ICS

CPU

D$I$

L2$

L2$

CPU

D$I$

CPU

D$I$L2$

CPU

D$I$L2$

CPU

D$I$L2$

L2$

CPU

D$I$L2$

CPU

D$I$

Page 40: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project40 © 2004 Mark D. Hill

Piranha Processing Node

CPU

Alpha core: 1-issue, in-order, 500MHzL1 caches: I&D, 64KB, 2-wayIntra-chip switch (ICS) 32GB/sec, 1-cycle delayL2 cache: shared, 1MB, 8-wayMemory Controller (MC) RDRAM, 12.8GB/sec

D$I$

L2$

ICS

CPU

D$I$

L2$

L2$

CPU

D$I$

CPU

D$I$L2$

CPU

D$I$L2$

CPU

D$I$L2$

L2$

CPU

D$I$L2$

CPU

D$I$

MEM-CTL

MEM-CTL

MEM-CTL MEM-CTL MEM-CTL

MEM-CTL MEM-CTL MEM-CTL

8 [email protected]/sec

Page 41: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project41 © 2004 Mark D. Hill

Piranha Processing Node

CPU

Alpha core: 1-issue, in-order, 500MHzL1 caches: I&D, 64KB, 2-wayIntra-chip switch (ICS) 32GB/sec, 1-cycle delayL2 cache: shared, 1MB, 8-wayMemory Controller (MC) RDRAM, 12.8GB/secProtocol Engines (HE & RE) prog., 1K instr., even/odd interleaving

D$I$

L2$

ICS

CPU

D$I$

L2$

L2$

CPU

D$I$

CPU

D$I$L2$

CPU

D$I$L2$

CPU

D$I$L2$

L2$

CPU

D$I$L2$

CPU

D$I$

MEM-CTL

MEM-CTL

MEM-CTL MEM-CTL MEM-CTL

MEM-CTL MEM-CTL MEM-CTL

RE

HE

Page 42: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project42 © 2004 Mark D. Hill

Piranha Processing Node

CPU

Alpha core: 1-issue, in-order, 500MHzL1 caches: I&D, 64KB, 2-wayIntra-chip switch (ICS) 32GB/sec, 1-cycle delayL2 cache: shared, 1MB, 8-wayMemory Controller (MC) RDRAM, 12.8GB/secProtocol Engines (HE & RE): prog., 1K instr., even/odd interleavingSystem Interconnect: 4-port Xbar router topology independent 32GB/sec total bandwidth

D$I$

L2$

ICS

CPU

D$I$

L2$

L2$

CPU

D$I$

CPU

D$I$L2$

CPU

D$I$L2$

CPU

D$I$L2$

L2$

CPU

D$I$L2$

CPU

D$I$

MEM-CTL

MEM-CTL

MEM-CTL MEM-CTL MEM-CTL

MEM-CTL MEM-CTL MEM-CTL

RE

HE

Rou

ter

4 Links @ 8GB/s

Page 43: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project43 © 2004 Mark D. Hill

Piranha Processing Node

CPU

Alpha core: 1-issue, in-order, 500MHzL1 caches: I&D, 64KB, 2-wayIntra-chip switch (ICS) 32GB/sec, 1-cycle delayL2 cache: shared, 1MB, 8-wayMemory Controller (MC) RDRAM, 12.8GB/secProtocol Engines (HE & RE): prog., 1K instr., even/odd interleavingSystem Interconnect: 4-port Xbar router topology independent 32GB/sec total bandwidth

D$I$

L2$

ICS

CPU

D$I$

L2$

L2$

CPU

D$I$

CPU

D$I$L2$

CPU

D$I$L2$

CPU

D$I$L2$

L2$

CPU

D$I$L2$

CPU

D$I$

MEM-CTL

MEM-CTL

MEM-CTL MEM-CTL MEM-CTL

MEM-CTL MEM-CTL MEM-CTL

RE

HE

Rou

ter

Page 44: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project45 © 2004 Mark D. Hill

0

50

100

150

200

250

300

350

P1500 MHz1-issue

INO1GHz

1-issue

OOO1GHz

4-issue

P8500MHz1-issue

P1500 MHz1-issue

INO1GHz

1-issue

OOO1GHz

4-issue

P8500MHz1-issue

Nor

mal

ized

Exe

cutio

n Ti

me L2Miss

L2HitCPU

233

145

100

34

350

191

100

44

OLTP DSS

• Piranha’s performance margin 3x for OLTP and 2.2x for DSS• Piranha has more outstanding misses better utilizes memory system

Single-Chip Piranha Performance

Page 45: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project46 © 2004 Mark D. Hill

Chip Multiprocessing Assessment: Servers

• Programming– Supports finer-grained sharing than old-style MP – But not as fine as SMT (yet)– Many cores can make performance gain large

• Can Yield MLP for Chip!– Can do CMP of SMT processors– C cores of S-way SMT with T-way MLP per thread– Yields Chip MLP of C*S*T (e.g., 8*2*2 = 32)

• Most Servers have Multi-Threaded Workload

• CMP is a Server Inflection Point– Expect >10x performance for less cost

Implying, >>10x cost-performance

Page 46: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project47 © 2004 Mark D. Hill

Chip Multiprocessing Assessment: Clients

• Most Client (Today) have Single-Threaded Workload– Base CMP No Help– Use Thread Level Speculation?– Use Helper Threads?

• CMPs for Clients?– Depends on Threads– CMP costs significant chip area (unlike SMT)

Page 47: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project48 © 2004 Mark D. Hill

Outline

• Computer Architecture Drivers

• Instruction Level Parallelism (ILP) Review

• Memory Level Parallelism (MLP)

• Improving MLP of Thread

• Improving MLP of a Core or Chip

• CMP Systems– Small, Medium, but Not Large– Wisconsin Multifacet Token Coherence

Page 48: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project49 © 2004 Mark D. Hill

Small CMP Systems

• Use One CMP (with C cores of S-way SMT)– C starts 2-4 and grows to 16-ish– S starts at 2, may stay at 2 or grow to 4– Fits on your desk!

• Directly Connect CMP (C) to Memory Controller (M) or DRAM

• If Threads Useful– >10X Performance vs. Uniprocesor– >>10X Cost-Performance vs. non-CMP SMP

• Commodity Server!

MC C

Page 49: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project50 © 2004 Mark D. Hill

Medium CMP Systems

• Use 2-16 CMPs (with C cores of S-way SMT)– Small: 4*4*2 = 32– Large: 16*16*4 = 1024

• Connect CMPs & Memory Controllers (or DRAM)

C C

C C

MM

MM

Processor-Centric

M M

M M

CC

CC

Memory-Centric

M M

C C

M M

C C

Dance Hall

Page 50: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project51 © 2004 Mark D. Hill

Large CMP Systems?

• 1000s of CMPs?

• Will not happen in the commercial market– Instead will network CMP systems into clusters– Enhance availability & reduces cost– Poor latency acceptable

• Market for large scientific machines probably ~$0 Billion

• Market for large government machines similar– Nevertheless, government can make this happen (like bombers)

• The rest of us will use – a small- or medium-CMP system– A cluster of small- or medium-CMP systems

Page 51: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project52 © 2004 Mark D. Hill

Wisconsin Multifacet (www.cs.wisc.edu/multifacet)

• Designing Commercial Servers

• Availability: SafetyNet Checkpointing [ISCA 2002]

• Programability: Flight Data Recorder [ISCA 2003]

• Methods: Simulating a $2M Server on a $2K PC [Computer 2003]

• Performance: Cache Compression [ISCA 2004]

• Simplicity & Performance: Token Coherence (next)

Page 52: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project53 © 2004 Mark D. Hill

Token Coherence [IEEE MICRO Top Picks 03]

• Coherence Invariant (for any memory block at any time):– One writer or multiple readers

• Implemented with distributed Finite State Machines• Indirectly enforced (bus order, acks, blocking, etc.)

• Token Coherence Directly Enforces– Each memory block has T tokens– Token count store with data (even in messages)– Processor needs all T tokens to write– Processor needs at least one token to read

• Last year: Glueless Multiprocessor– Speedup 17-54% vs directory

• This Year: Medium CMP Systems– Flat for correctness– Hierarchical for performance

Page 53: A Future for Parallel Computer Architectures

Wisconsin Multifacet Project54 © 2004 Mark D. Hill

Conclusions

Must Exploit Memory Level Parallelism!

At Thread: Runahead & Continual Flow Pipeline

At Processor: Simultaneous Multithreading

At Chip: Chip Multiprocessing

Talk to be filed : Google Mark Hill > Publications > 2004