Rework the way the prefetcher is used. Now we copy the request from the prefetch queue and into the mq when issued
objects/BaseCache.mpy: Add some parameters for prefetcher --HG-- extra : convert_revision : 1a2e6d2ce5359fab0a4d5d4639a701131101d68c
This commit is contained in:
parent
cda8f99a56
commit
13608a9b85
1 changed files with 4 additions and 0 deletions
|
@ -36,3 +36,7 @@ simobj BaseCache(BaseMem):
|
|||
two_queue = Param.Bool(False,
|
||||
"whether the lifo should have two queue replacement")
|
||||
write_buffers = Param.Int(8, "number of write buffers")
|
||||
use_prefetcher = Param.Bool(False,
|
||||
"wheter you are using the hardware prefetcher")
|
||||
prefetcher_size = Param.Int(100,
|
||||
"Number of entries in the harware prefetch queue")
|
||||
|
|
Loading…
Reference in a new issue