38c38
< # Note: the L1 Cache latency is only used by the sequencer on fast path hits
---
> # Declare caches used by the protocol
40,42c40,41
< class L1Cache(RubyCache):
< latency = 2
<
---
> class L1Cache(RubyCache): pass
> class L2Cache(RubyCache): pass
44c43
< # Note: the L2 Cache latency is not currently used
---
> # Probe filter is a cache
46,47c45
< class L2Cache(RubyCache):
< latency = 10
---
> class ProbeFilter(RubyCache): pass
49,54d46
< #
< # Probe filter is a cache, latency is not used
< #
< class ProbeFilter(RubyCache):
< latency = 1
<