码迷,mamicode.com
首页 > 其他好文 > 详细

关于gem5预取实验时的一些注意事项

时间:2015-01-28 11:10:27      阅读:429      评论:0      收藏:0      [点我收藏+]

标签:

1. 不同版本的gem5开启prefetch的方法可能不同,较新的版本需要在gem5/configs/common/Caches.py的class L2Cache(BaseCache)或者class L1Cache(BaseCache)添加相应的prefetcher


class L2Cache(BaseCache):
    assoc = 8
    block_size = 64
    hit_latency = 20
    response_latency = 20
    mshrs = 20
    tgts_per_mshr = 12
    write_buffers = 8
    #adding the following line
#prefetcher = StridePrefetcher(degree=8, latency=1.0)

之前的gem5版本添加prefetch时,需要在gem5/configs/common/Caches.py的class L2Cache(BaseCache)或者class L1Cache(BaseCache)添加相应的prefetch_policy
class L2Cache(BaseCache):
    assoc = 8
    block_size = 64
    latency = ‘5ns‘
    mshrs = 20
    tgts_per_mshr = 12
    prefetch_policy=‘tagged‘



2. statble_2013_06_16的TaggedPrefetcher有bug


3. 添加预取时,要采用--cpu-type=timing或者--cpu-type=detailed,默认的atomic方式,其预取数据均为0

关于gem5预取实验时的一些注意事项

标签:

原文地址:http://blog.csdn.net/wyj7260/article/details/43226955

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!