Caching II - PowerPoint PPT Presentation

About This Presentation
Title:

Caching II

Description:

parameter STime = 0,Ton = 50,Toff = 50,Tcc=Ton Toff; output CLK; reg CLK; initial begin ... Ton CLK = ~CLK; end. endmodule. Project. For jal and jr, the ... – PowerPoint PPT presentation

Number of Views:40
Avg rating:3.0/5.0
Slides: 27
Provided by: scie226
Category:
Tags: begin | caching | ton

less

Transcript and Presenter's Notes

Title: Caching II


1
Caching II
  • Andreas Klappenecker
  • CPSC321 Computer Architecture

2
Verilog Questions Answers
3
Verilog Q A
  • How is the xor instruction encoded?
  • R-format instruction, function field Ox26
  • See PH page A-59
  • What is the purpose of Idealmem.v?
  • It models the memory
  • dmeminit.v initializes data memory
  • imeminit.v initializes instruction memory

4
Verilog QA
  • How do I specify delays?
  • define DEL 10
  • begin
  • a lt (DEL) b
  • c lt (DEL) d
  • end

Delays can be inserted anywhere in an assignment
5
Delays
Simulation starts _at_time 0 i3, j4 Simulation
continues until first delay 1 and waits until
time 1. _at_time 1, j is sampled _at_time 2, assign 4
to i continue w/ next stmt _at_time 3, i is
sampled _at_time 4, assign 4 to j
  • module iab
  • integer i, j
  • initial begin
  • i 3
  • j 4
  • begin
  • 1 i 1 j
  • 1 j 1 i
  • end
  • end
  • endmodule

6
Delays
_at_time 0 i3, j4 both non-blocking assignments
finish at time 0 intra-assignments delays do not
delay the execution of the statement sample j
and schedule to assign to i at time 1 sample i
and schedule to assign to j _at_time 1 i 4, j
3
  • module ianb
  • integer i, j
  • initial begin
  • i 3
  • j 4
  • begin
  • i lt 1 j
  • j lt 1 i
  • end
  • end
  • endmodule

7
Delays
  • Hint Using unit delays simplifies debugging
  • It allows you to find out which signal depends on
    which
  • Do not code in the form 1, rather use
  • define foo_del 1 // Change later
  • a lt (foo_del) b

8
Clock
  • module m555 (CLK)
  • parameter STime 0,Ton 50,Toff
    50,TccTonToff
  • output CLK
  • reg CLK
  • initial begin
  • STime CLK 0
  • end
  • always begin
  • Toff CLK CLK
  • Ton CLK CLK
  • end
  • endmodule

9
Project
  • For jal and jr, the datapath of the book is not
    enough
  • You need more control signals for ALUop, so there
    is no point to stick to the way it is done in the
    book

10
Report
  • Include some a table explaining your
  • control signals, e.g.,

11
Caching
12
Memory
  • Users want large and fast memories
  • SRAM is too expensive for main memory
  • DRAM is too slow for many purposes
  • Compromised Build a memory hierarchy

13
Locality
  • Temporal locality
  • A referenced item will be again referenced soon
  • Spatial locality
  • nearby data will be referenced soon

14
Direct Mapped Cache
  • Mapping address modulo the number of blocks in
    the cache, x -gt x mod B

15
Direct Mapped Cache
  • Cache with 1024210 words
  • tag from cache is compared against upper portion
    of the address
  • If tagupper 20 bits and valid bit is set, then
    we have a cache hit otherwise it is a cache
    missWhat kind of locality are we
    taking advantage of?

16
Direct Mapped Cache
  • Taking advantage of spatial locality

17
Cache Hits and Misses
  • Read hits
  • this is what we want!
  • Read misses
  • stall the CPU, fetch block from memory, deliver
    to cache, restart
  • Write hits
  • can replace data in cache and memory
    (write-through)
  • write the data only into the cache (write-back
    the cache later)
  • Write misses
  • read the entire block into the cache, then write
    the word

18
(No Transcript)
19
(No Transcript)
20
(No Transcript)
21
(No Transcript)
22
(No Transcript)
23
(No Transcript)
24
(No Transcript)
25
What Block Size?
  • A large block size reduces cache misses
  • Cache miss penalty increases
  • We need to balance these two constraints
  • Next time
  • How can we measure cache performance?
  • How can we improve cache performance?

26
(No Transcript)
Write a Comment
User Comments (0)
About PowerShow.com