Cache Memories October 8, 2007

Similar documents
CISC 360. Cache Memories Nov 25, 2008

Giving credit where credit is due

Cache Memories. EL2010 Organisasi dan Arsitektur Sistem Komputer Sekolah Teknik Elektro dan Informatika ITB 2010

Systems I. Optimizing for the Memory Hierarchy. Topics Impact of caches on performance Memory hierarchy considerations

Cache Memories. Cache Memories Oct. 10, Inserting an L1 Cache Between the CPU and Main Memory. General Org of a Cache Memory

Cache memories The course that gives CMU its Zip! Cache Memories Oct 11, General organization of a cache memory

ν Hold frequently accessed blocks of main memory 2 CISC 360, Fa09 Cache is an array of sets. Each set contains one or more lines.

Cache Memories. Topics. Next time. Generic cache memory organization Direct mapped caches Set associative caches Impact of caches on performance

Last class. Caches. Direct mapped

Cache memories are small, fast SRAM based memories managed automatically in hardware.

Today Cache memory organization and operation Performance impact of caches

211: Computer Architecture Summer 2016

Memory Hierarchy. Announcement. Computer system model. Reference

The course that gives CMU its Zip! Memory System Performance. March 22, 2001

Agenda Cache memory organization and operation Chapter 6 Performance impact of caches Cache Memories

Example. How are these parameters decided?

Denison University. Cache Memories. CS-281: Introduction to Computer Systems. Instructor: Thomas C. Bressoud

Today. Cache Memories. General Cache Concept. General Cache Organization (S, E, B) Cache Memories. Example Memory Hierarchy Smaller, faster,

Carnegie Mellon. Cache Memories. Computer Architecture. Instructor: Norbert Lu1enberger. based on the book by Randy Bryant and Dave O Hallaron

Computer Organization: A Programmer's Perspective

Cache Memories /18-213/15-513: Introduction to Computer Systems 12 th Lecture, October 5, Today s Instructor: Phil Gibbons

Memory Hierarchy. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

CS 33. Caches. CS33 Intro to Computer Systems XVIII 1 Copyright 2017 Thomas W. Doeppner. All rights reserved.

Carnegie Mellon. Cache Memories

Memory Hierarchy. Computer Systems Organization (Spring 2017) CSCI-UA 201, Section 3. Instructor: Joanna Klukowska

Memory Hierarchy. Cache Memory Organization and Access. General Cache Concept. Example Memory Hierarchy Smaller, faster,

Cache Memories. From Bryant and O Hallaron, Computer Systems. A Programmer s Perspective. Chapter 6.

Cache Memories. Andrew Case. Slides adapted from Jinyang Li, Randy Bryant and Dave O Hallaron

High-Performance Parallel Computing

Cache Memories : Introduc on to Computer Systems 12 th Lecture, October 6th, Instructor: Randy Bryant.

Cache memories are small, fast SRAM-based memories managed automatically in hardware. Hold frequently accessed blocks of main memory

Lecture 12. Memory Design & Caches, part 2. Christos Kozyrakis Stanford University

Memory Hierarchy. Instructor: Adam C. Champion, Ph.D. CSE 2431: Introduction to Operating Systems Reading: Chap. 6, [CSAPP]

CSCI-UA.0201 Computer Systems Organization Memory Hierarchy

Roadmap. Java: Assembly language: OS: Machine code: Computer system:

Systems Programming and Computer Architecture ( ) Timothy Roscoe

CISC 360. Cache Memories Exercises Dec 3, 2009

Cache Memories. Lecture, Oct. 30, Bryant and O Hallaron, Computer Systems: A Programmer s Perspective, Third Edition

Chapter 6 Caches. Computer System. Alpha Chip Photo. Topics. Memory Hierarchy Locality of Reference SRAM Caches Direct Mapped Associative

Lecture 15: Caches and Optimization Computer Architecture and Systems Programming ( )

CSCI 402: Computer Architectures. Performance of Multilevel Cache

CS 240 Stage 3 Abstractions for Practical Systems

211: Computer Architecture Summer 2016

CS429: Computer Organization and Architecture

CS3350B Computer Architecture

Memory hierarchies: caches and their impact on the running time

CS429: Computer Organization and Architecture

Locality. CS429: Computer Organization and Architecture. Locality Example 2. Locality Example

Cache Performance II 1

EE108B Lecture 13. Caches Wrap Up Processes, Interrupts, and Exceptions. Christos Kozyrakis Stanford University

write-through v. write-back write-through v. write-back write-through v. write-back option 1: write-through write 10 to 0xABCD CPU RAM Cache ABCD: FF

Announcements. EE108B Lecture 13. Caches Wrap Up Processes, Interrupts, and Exceptions. Measuring Performance. Memory Performance

CS 261 Fall Caching. Mike Lam, Professor. (get it??)

Lecture 17: Memory Hierarchy and Cache Coherence Concurrent and Mul7core Programming

Problem: Processor Memory BoJleneck

Caches Spring 2016 May 4: Caches 1

Memories. CPE480/CS480/EE480, Spring Hank Dietz.

Computer Organization - Overview

Memory Hierarchy & Caching. CS 351: Systems Programming Michael Saelee

Problem: Processor- Memory Bo<leneck

SE-292 High Performance Computing. Memory Hierarchy. R. Govindarajan Memory Hierarchy

+ Random-Access Memory (RAM)

Caches Concepts Review

Caches III. CSE 351 Spring Instructor: Ruth Anderson

CS 33. Architecture and Optimization (3) CS33 Intro to Computer Systems XVI 1 Copyright 2018 Thomas W. Doeppner. All rights reserved.

Computer Architecture and System Software Lecture 09: Memory Hierarchy. Instructor: Rob Bergen Applied Computer Science University of Winnipeg

CS3350B Computer Architecture

Donn Morrison Department of Computer Science. TDT4255 Memory hierarchies

Random-Access Memory (RAM) CISC 360. The Memory Hierarchy Nov 24, Conventional DRAM Organization. SRAM vs DRAM Summary.

Measurement tools and techniques

Introduction to Computer Systems

Introduction to Computer Systems

LECTURE 4: LARGE AND FAST: EXPLOITING MEMORY HIERARCHY

Chapter 5. Large and Fast: Exploiting Memory Hierarchy

CS356: Discussion #9 Memory Hierarchy and Caches. Marco Paolieri Illustrations from CS:APP3e textbook

Kathryn Chan, Kevin Bi, Ryan Wong, Waylon Huang, Xinyu Sui

How to Write Fast Numerical Code

Advanced Memory Organizations

L2 cache provides additional on-chip caching space. L2 cache captures misses from L1 cache. Summary

CS241 Computer Organization Spring Principle of Locality

Copyright 2012, Elsevier Inc. All rights reserved.

Advanced Caching Techniques

How to Write Fast Numerical Code

CS24: INTRODUCTION TO COMPUTING SYSTEMS. Spring 2017 Lecture 15

Lecture 2. Memory locality optimizations Address space organization

CS24: INTRODUCTION TO COMPUTING SYSTEMS. Spring 2014 Lecture 14

Chapter 5A. Large and Fast: Exploiting Memory Hierarchy

Cache Memory and Performance

F28HS Hardware-Software Interface: Systems Programming

Memory Hierarchy Computing Systems & Performance MSc Informatics Eng. Memory Hierarchy (most slides are borrowed)

211: Computer Architecture Summer 2016

Memory Hierarchy Computing Systems & Performance MSc Informatics Eng. Memory Hierarchy (most slides are borrowed)

EE 4683/5683: COMPUTER ARCHITECTURE

CS/ECE 250 Computer Architecture

Computer Systems. Memory Hierarchy. Han, Hwansoo

Advanced Caching Techniques

CSF Improving Cache Performance. [Adapted from Computer Organization and Design, Patterson & Hennessy, 2005]

Advanced Architecture

Textbook: Burdea and Coiffet, Virtual Reality Technology, 2 nd Edition, Wiley, Textbook web site:

Parallel Processing. Parallel Processing. 4 Optimization Techniques WS 2018/19

Transcription:

15-213 Topics Cache Memories October 8, 27 Generic cache memory organization Direct mapped caches Set associative caches Impact of caches on performance The memory mountain class12.ppt

Cache Memories Cache memories are small, fast SRAM-based memories managed automatically in hardware. Hold frequently accessed blocks of main memory CPU looks first for data in L1, then in L2, then in main memory. Typical system structure: CPU chip SRAM Port L2 s register file L1 cache ALU system bus memory bus L2 data bus interface I/O bridge main memory 2

Inserting an L1 Cache Between the CPU and Main Memory The transfer unit between the CPU register file and the cache is a 4-byte block. The transfer unit between the cache and main memory is a 4-word block (16 bytes). 3 line line 1 block 1 block 21 block 3 a b c d... p q r s... w x y z... The tiny, very fast CPU register file has room for four 4-byte words. The small fast L1 cache has room for two 4-word blocks. The big slow main memory has room for many 4-word blocks.

General Organization of a Cache Cache is an array of sets. t bits per line B = 2 b bytes per cache block Each set contains one or more lines. Each line holds a block of data. set : valid valid valid 1 1 1 B 1 B 1 B 1 E lines per set S = 2 s sets set 1: valid 1 B 1 valid 1 B 1 set S-1: valid 1 B 1 4 1 valid bit per line Cache size: C = B x E x S data bytes

Addressing Caches Address A: t bits s bits b bits set : v v 1 1 B 1 B 1 m-1 <> <set index> <block offset> set 1: v v 1 1 B 1 B 1 set S-1: v v 1 1 B 1 B 1 The word at address A is in the cache if the bits in one of the <valid> lines in set <set index> match <>. The word contents begin at offset <block offset> bytes from the beginning of the block. 5

Addressing Caches Address A: t bits s bits b bits set : v v 1 1 B 1 B 1 m-1 <> <set index> <block offset> set 1: v v 1 1 B 1 B 1 set S-1: v v 1 1 B 1 B 1 1. Locate the set based on <set index> 2. Locate the line in the set based on <> 3. Check that the line is valid 4. Locate the data in the line based on <block offset> 6

Direct-Mapped Cache Simplest kind of cache, easy to build (only 1 compare required per access) Characterized by exactly one line per set. set : valid cache block E=1 lines per set set 1: valid cache block set S-1: valid cache block 7 Cache size: C = B x S data bytes

Accessing Direct-Mapped Caches Set selection Use the set index bits to determine the set of interest. selected set set : set 1: valid valid cache block cache block set S-1: valid cache block m-1 t bits s bits b bits 1 set index block offset 8

Accessing Direct-Mapped Caches Line matching and word selection Line matching: Find a valid line in the selected set with a matching Word selection: Then extract the word =1? (1) The valid bit must be set selected set (i): 1 2 3 4 5 6 7 1 11 w w 1 w 2 w 3 (2) The bits in the cache line must =? match the bits in the address t bits 11 m-1 9 If (1) and (2), then cache hit s bits b bits i 1 set index block offset

Accessing Direct-Mapped Caches Line matching and word selection Line matching: Find a valid line in the selected set with a matching Word selection: Then extract the word selected set (i): 1 2 3 4 5 6 7 1 11 w w 1 w 2 w 3 1 (3) If cache hit, block offset selects starting byte. m-1 t bits 11 s bits b bits i 1 set index block offset

Direct-Mapped Cache Simulation t=1 s=2 b=1 x xx x M=16 byte addresses, B=2 bytes/block, S=4 sets, E=1 entry/set Address trace (reads): [ 2 ], 1 [1 2 ], 7 [111 2 ], 8 [1 2 ], [ 2 ] miss hit miss miss miss v data 1? 1 M[8-9] M[-1]? 11 1 M[6-7]

Set Associative Caches Characterized by more than one line per set set : valid cache block valid cache block E=2 lines per set set 1: set S-1: valid cache block valid cache block valid cache block valid cache block 12 E-way associative cache

Accessing Set Associative Caches Set selection identical to direct-mapped cache set : valid valid cache block cache block selected set set 1: valid valid cache block cache block set S-1: valid valid cache block cache block t bits s bits b bits 1 m-1 13 set index block offset

Accessing Set Associative Caches Line matching and word selection must compare the in each valid line in the selected set. =1? (1) The valid bit must be set 1 2 3 4 5 6 7 selected set (i): 1 11 1 11 w w 1 w 2 w 3 (2) The bits in one of the cache lines must match the bits in the address 14 m-1 t bits 11 =? If (1) and (2), then cache hit s bits b bits i 1 set index block offset

Accessing Set Associative Caches Line matching and word selection Word selection is the same as in a direct mapped cache 1 2 3 4 5 6 7 selected set (i): 1 11 1 11 w w 1 w 2 w 3 (3) If cache hit, block offset selects starting byte. 15 m-1 t bits 11 s bits b bits i 1 set index block offset

2-Way Associative Cache Simulation t=2 s=1 b=1 xx x x M=16 byte addresses, B=2 bytes/block, S=2 sets, E=2 entry/set Address trace (reads): [ 2 ], 1 [1 2 ], 7 [111 2 ], 8 [1 2 ], [ 2 ] miss hit miss miss hit 16 v data 1? M[-1]? 1 1 M[8-9] 1 1 M[6-7]

Why Use Middle Bits as Index? High-Order Bit Indexing Adjacent memory lines would map to same cache entry Poor use of spatial locality Middle-Order Bit Indexing Consecutive memory lines map to different cache lines Can hold S*B*E-byte region of address space in cache at one time 17 1 1 11 4-line Cache 1 1 11 1 11 11 111 1 11 11 111 11 111 111 1111 High-Order Bit Indexing 1 1 11 1 11 11 111 1 11 11 111 11 111 111 1111 Middle-Order Bit Indexing

Maintaining a Set-Associate Cache How to decide which cache line to use in a set? Least Recently Used (LRU), Requires lg 2 (E!) extra bits Not recently Used (NRU) Random Virtual vs. Physical addresses: The memory system works with physical addresses, but it takes time to translate a virtual to a physical address. So most L1 caches are virtually indexed, but physically ged. 18

Multi-Level Caches Options: separate data and instruction caches,, or a unified cache Processor Regs L1 d-cache L1 i-cache Unified Unified L2 L2 Cache Cache Memory disk disk size: speed: $/Mbyte: line size: 2 B 3 ns 8-64 KB 3 ns 8 B 32 B 32 B larger, slower, cheaper 1-4MB SRAM 6 ns $1/MB 128 MB DRAM 6 ns $1.5/MB 8 KB 3 GB 8 ms $.5/MB 19

What about writes? Multiple copies of data exist: L1 L2 Main Memory Disk What to do when we write? Write-through Write-back need a dirty bit What to do on a write-miss? What to do on a replacement? Depends on whether it is write through or write back 2

Intel Pentium III Cache Hierarchy Regs. L1 Data 1 cycle latency 16 KB 4-way assoc Write-through 32B lines L1 Instruction 16 KB, 4-way 32B lines L2 L2 Unified 128KB--2 MB MB 4-way 4-way assoc assoc Write-back Write Write allocate 32B 32B lines lines Main Memory Up Up to to 4GB 4GB Processor Processor Chip Chip 21

Cache Performance Metrics Miss Rate Fraction of memory references not found in cache (misses / references) Typical numbers: 3-1% for L1 can be quite small (e.g., < 1%) for L2, depending on size, etc. Hit Time Time to deliver a line in the cache to the processor (includes time to determine whether the line is in the cache) Aside for architects: -Increasing cache size? -Increasing block size? -Increasing associativity? Additional time required because of a miss Typically 5-2 cycles for main memory (Trend: increasing!) Typical numbers: 1-2 clock cycle for L1 5-2 clock cycles for L2 Miss Penalty 22

Writing Cache Friendly Code Repeated references to variables are good (temporal locality) Stride-1 1 reference patterns are good (spatial( locality) Examples: cold cache, 4-byte words, 4-word cache blocks int sum_array_rows(int a[m][n]) { int i, j, sum = ; int sum_array_cols(int a[m][n]) { int i, j, sum = ; for (i = ; i < M; i++) for (j = ; j < N; j++) sum += a[i][j]; return sum; 23 for (j = ; j < N; j++) for (i = ; i < M; i++) sum += a[i][j]; return sum; Miss rate = 1/4 = 25% Miss rate = 1%

The Memory Mountain Read throughput (read bandwidth) Number of bytes read from memory per second (MB/s) Memory mountain Measured read throughput as a function of spatial and temporal locality. Compact way to characterize memory system performance. 24

Memory Mountain Test Function /* The test function */ void test(int elems, int stride) { int i, result = ; volatile int sink; for (i = ; i < elems; i += stride) result += data[i]; sink = result; /* So compiler doesn't optimize away the loop */ /* Run test(elems, stride) and return read throughput (MB/s) */ double run(int size, int stride, double Mhz) { double cycles; int elems = size / sizeof(int); test(elems, stride); /* warm up the cache */ cycles = fcyc2(test, elems, stride, ); /* call test(elems,stride) */ return (size / stride) / (cycles / Mhz); /* convert cycles to MB/s */ 25

Memory Mountain Main Routine /* mountain.c - Generate the memory mountain. */ #define MINBYTES (1 << 1) /* Working set size ranges from 1 KB */ #define MAXBYTES (1 << 23) /*... up to 8 MB */ #define MAXSTRIDE 16 /* Strides range from 1 to 16 */ #define MAXELEMS MAXBYTES/sizeof(int) int data[maxelems]; /* The array we'll be traversing */ int main() { int size; /* Working set size (in bytes) */ int stride; /* Stride (in array elements) */ double Mhz; /* Clock frequency */ 26 init_data(data, MAXELEMS); /* Initialize each element in data to 1 */ Mhz = mhz(); /* Estimate the clock frequency */ for (size = MAXBYTES; size >= MINBYTES; size >>= 1) { for (stride = 1; stride <= MAXSTRIDE; stride++) printf("%.1f\t", run(size, stride, Mhz)); printf("\n"); exit();

The Memory Mountain Throughput (MB/sec) 12 1 8 6 L1 Pentium III 55 MHz 16 KB on-chip L1 d-cache 16 KB on-chip L1 i-cache 512 KB off-chip unified L2 cache Slopes of Spatial Locality 27 4 2 s1 s3 s5 s7 Stride (words) s9 xe L2 mem s11 s13 s15 8m 2m 512k 128k 32k 8k 2k Ridges of Temporal Locality Working set size (bytes)

X86-64 Memory Mountain Slopes of Spatial Locality 28 Read Throughput (MB/s) 6 5 4 3 2 1 s1 s5 s9 s13 s17 Stride (words) s21 L1 L2 Mem s25 s29 Pentium Nocona Xeon x86-64 3.2 GHz 12 Kuop on-chip L1 trace cache 16 KB on-chip L1 d-cache 1 MB off-chip unified L2 cache 4m 128m 4k 128k Working Set Size (bytes) Ridges of Temporal Locality

Opteron Memory Mountain 3 25 L1 AMD Opteron 2 GHZ 2 Read throughput (MB/s) 15 L2 1 5 4k 29 s1 s5 s9 s13 s17 Stride (words) s21 Mem s25 s29 4m 128m 128k Working set (bytes)

Ridges of Temporal Locality Slice through the memory mountain with stride=1 illuminates read throughputs of different caches and memory 12 1 main memory region L2 cache region L1 cache region read througput (MB/s) 8 6 4 2 8m 4m 2m 124k 512k 256k 128k 64k 32k 16k 8k 4k 2k 1k 3 working set size (bytes)

A Slope of Spatial Locality Slice through memory mountain with size=256kb shows cache block size. 8 7 read throughput (MB/s) 6 5 4 3 2 one access per cache line 1 s1 s2 s3 s4 s5 s6 s7 s8 s9 s1 s11 s12 s13 s14 s15 s16 31 stride (words)

Matrix Multiplication Example Major Cache Effects to Consider Total cache size Exploit temporal locality and keep the working set small (e.g., use blocking) 32 Block size Exploit spatial locality Description: Multiply N x N matrices O(N3) total operations Accesses N reads per source element N values summed per destination» but may be able to hold in register Variable sum /* /* ijk ijk */ */ held in register for for (i=; (i=; i<n; i<n; i++) i++) { for for (j=; (j=; j<n; j<n; j++) j++) { sum sum =.;.; for for (k=; (k=; k<n; k<n; k++) k++) sum sum += += a[i][k] * b[k][j]; c[i][j] = sum; sum;

Miss Rate Analysis for Matrix Multiply Assume: Line size = 32B (big enough for four 64-bit words) Matrix dimension (N) is very large Approximate 1/N as. Cache is not even big enough to hold multiple rows Analysis Method: Look at access pattern of inner loop k j j i k i A B C 33

Layout of C Arrays in Memory (review) C arrays allocated in row-major order each row in contiguous memory locations Stepping through columns in one row: for (i = ; i < N; i++) sum += a[][i]; accesses successive elements if block size (B) > 4 bytes, exploit spatial locality compulsory miss rate = 4 bytes / B Stepping through rows in one column: for (i = ; i < n; i++) sum += a[i][]; accesses distant elements no spatial locality! compulsory miss rate = 1 (i.e. 1%) 34

Matrix Multiplication (ijk) /* /* ijk ijk */ */ for for (i=; (i=; i<n; i<n; i++) i++) { for for (j=; (j=; j<n; j<n; j++) j++) { sum sum =.;.; for for (k=; (k=; k<n; k<n; k++) k++) sum sum += += a[i][k] * b[k][j]; c[i][j] = sum; sum; Misses per Inner Loop Iteration: A B C.25 1.. Inner loop: (i,*) (*,j) (i,j) A B C Row-wise Columnwise Fixed 35

Matrix Multiplication (jik) /* /* jik jik */ */ for for (j=; (j=; j<n; j<n; j++) j++) { for for (i=; (i=; i<n; i<n; i++) i++) { sum sum =.;.; for for (k=; (k=; k<n; k<n; k++) k++) sum sum += += a[i][k] * b[k][j]; c[i][j] = sum sum Misses per Inner Loop Iteration: A B C.25 1.. Inner loop: (i,*) (*,j) (i,j) A B C Row-wise Columnwise Fixed 36

Matrix Multiplication (kij) /* /* kij kij */ */ for for (k=; (k=; k<n; k<n; k++) k++) { for for (i=; (i=; i<n; i<n; i++) i++) { r = a[i][k]; for for (j=; (j=; j<n; j<n; j++) j++) c[i][j] += += r * b[k][j]; Inner loop: (i,k) (k,*) (i,*) A B C Fixed Row-wise Row-wise Misses per Inner Loop Iteration: A B C..25.25 37

Matrix Multiplication (ikj) /* /* ikj ikj */ */ for for (i=; (i=; i<n; i<n; i++) i++) { for for (k=; (k=; k<n; k<n; k++) k++) { r = a[i][k]; for for (j=; (j=; j<n; j<n; j++) j++) c[i][j] += += r * b[k][j]; Inner loop: (i,k) (k,*) (i,*) A B C Fixed Row-wise Row-wise Misses per Inner Loop Iteration: A B C..25.25 38

Matrix Multiplication (jki) /* /* jki jki */ */ for for (j=; (j=; j<n; j<n; j++) j++) { for for (k=; (k=; k<n; k<n; k++) k++) { r = b[k][j]; for for (i=; (i=; i<n; i<n; i++) i++) c[i][j] += += a[i][k] * r; r; Misses per Inner Loop Iteration: A B C 1.. 1. Inner loop: (*,k) (k,j) (*,j) A B C Column - wise Fixed Columnwise 39

Matrix Multiplication (kji) /* /* kji kji */ */ for for (k=; (k=; k<n; k<n; k++) k++) { for for (j=; (j=; j<n; j<n; j++) j++) { r = b[k][j]; for for (i=; (i=; i<n; i<n; i++) i++) c[i][j] += += a[i][k] * r; r; Misses per Inner Loop Iteration: A B C 1.. 1. Inner loop: (*,k) (k,j) (*,j) A B C Fixed Columnwise Columnwise 4

Summary of Matrix Multiplication for (i=; i<n; i++) { for (j=; j<n; j++) { sum =.; for (k=; k<n; k++) sum += a[i][k] * b[k][j]; c[i][j] = sum; ijk (& jik): 2 loads, stores misses/iter = 1.25 41 for (k=; k<n; k++) { for (i=; i<n; i++) { r = a[i][k]; for (j=; j<n; j++) c[i][j] += r * b[k][j]; for (j=; j<n; j++) { for (k=; k<n; k++) { r = b[k][j]; for (i=; i<n; i++) c[i][j] += a[i][k] * r; kij (& ikj): 2 loads, 1 store misses/iter =.5 jki (& kji): 2 loads, 1 store misses/iter = 2.

Pentium Matrix Multiply Performance Miss rates are helpful but not perfect predictors. Code scheduling matters, too. 6 5 kji & jki 4 Cycles/iteration 3 2 1 kij & ikj jik & ijk kji jki kij ikj jik ijk 42 25 5 75 1 125 15 175 2 225 25 275 3 325 35 375 4 Array size (n)

Improving Temporal Locality by Blocking Example: Blocked matrix multiplication block (in this context) does not mean cache block. Instead, it mean a sub-block within the matrix. Example: N = 8; sub-block size = 4 A 11 A 12 A 21 A 22 X B 11 B 12 B 21 B 22 = C 11 C 12 C 21 C 22 Key idea: Sub-blocks (i.e., A xy ) can be treated just like scalars. C 11 = A 11 B 11 + A 12 B 21 C 12 = A 11 B 12 + A 12 B 22 C 21 = A 21 B 11 + A 22 B 21 C 22 = A 21 B 12 + A 22 B 22 43

Blocked Matrix Multiply (bijk) for (jj=; jj<n; jj+=bsize) { for (i=; i<n; i++) for (j=jj; j < min(jj+bsize,n); j++) c[i][j] =.; 44 for (kk=; kk<n; kk+=bsize) { for (i=; i<n; i++) { for (j=jj; j < min(jj+bsize,n); j++) { sum =. for (k=kk; k < min(kk+bsize,n); k++) { sum += a[i][k] * b[k][j]; c[i][j] += sum;

Blocked Matrix Multiply Analysis Innermost Loop Pair Innermost loop pair multiplies a 1 X bsize sliver of A by a bsize X bsize block of B and accumulates into 1 X bsize sliver of C Loop over i steps through n row slivers of A & C, using same B for (i=; i<n; i++) { for (j=jj; j < min(jj+bsize,n); j++) { sum =. for (k=kk; k < min(kk+bsize,n); k++) { sum += a[i][k] * b[k][j]; c[i][j] += sum; kk jj jj i kk i A B C 45 row sliver accessed bsize times block reused n times in succession Update successive elements of sliver

Pentium Blocked Matrix Multiply Performance Blocking (bijk( and bikj) ) improves performance by a factor of two over unblocked versions (ijk( and jik) relatively insensitive to array size. 6 5 46 Cycles/iteration 4 3 2 1 25 5 75 1 125 15 175 2 Array size (n) 225 25 275 3 325 35 375 4 kji jki kij ikj jik ijk bijk (bsize = 25) bikj (bsize = 25)

Concluding Observations Programmer can optimize for cache performance How data structures are organized How data are accessed Nested loop structure Blocking is a general technique All systems favor cache friendly code Getting absolute optimum performance is very platform specific Cache sizes, line sizes, associativities, etc. Can get most of the advane with generic code Keep working set reasonably small (temporal locality) Use small strides (spatial locality) 47