自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

计算机系统、存储

关注世界,分享未来!

  • 博客(4)
  • 资源 (20)
  • 收藏
  • 关注

原创 shell: awk中二维数组计算

因为awk中没有实际的二维数组,而是通过一维数组模拟的,具体用法如下:awk ' { a[$1,$2]++; } END{ for(i in a) { split(i,idx,SUBSEP); # 下面三项分别表示二维数组的i,j和a[i,j] print idx[1], idx[2], a[idx[1], idx[2]]; }

2015-12-21 15:51:58 4091

原创 gem5: 缓存中如何设置writeback dirty cachelines并invalidate该缓存块

参考:MemCmd for CleanInvalid 解决方法: 1.使用classic缓存模型, 在src/mem/cache/cache_impl.hh中有两个方法可以实现缓存块的writeback和invalidate.分别为:Cache::writebackVisistor() 和Cache::invalidateVisitor() ,用法如下: BlkType *blk = tags-

2015-12-20 17:13:55 2551 2

原创 gem5: 在缓存代码中如何识别缓存是L1,L2还是L3呢?

参考:Checking Cache Levels问题描述:有时候我们需要知道cpu当前在访问缓存的哪一级,然后针对性的作出信息统计,那么如何知道是L几呢?方法: If you want to know which level the target cache is at, I can tell you a simple approach that I used.(1) Add a member v

2015-12-15 15:04:00 2411 10

原创 gem5: the trace of cache set and cache line write hit counters

问题:如何统计缓存的set和cache line的写命中情况?解决方法: 1.缓存set访问写命中,计数一次,cache line写命中,计数一次;2.在gem5中的src/mem/cache/base.hh中有incHitCount()函数,它是统计缓存命中情况的,那么只需要在这里面细化的统计set和cache line的写命中即可;3.首先设置trace信息,在src/mem/cache/SC

2015-12-13 19:40:21 1745 2

RepeatData.zip

Cache: write-intensive write data

2021-07-08

qemu-patch.diff

install parsec3.0 for gem5 on arm architecture. qemu-patch.diff

2019-04-28

static-patch.diff

install parsec 3.0 for gem5 in arm architecture. static-patch.diff

2019-04-28

Spec06SimpointsAndWeights

spec cpu2006中的simulation points and weights.

2017-03-11

running parsec 3 for arm architecture

A guideline: running parsec 3 for arm architecture.

2016-01-28

Using the M5 Simulator

Using the M5 Simulator. M5的使用文档ppt,方便全面了解M5的使用细节。

2015-07-28

Using the M5 Simulator - ASPLOS

M5的使用方法介绍,详细讲述了使用的过程,Using the M5 Simulator - ASPLOS

2015-07-27

tikz快速入门手册

tikz入门手册,简要的介绍了tikz绘图需要使用的基本技能。

2015-07-02

tikz&pgf manual手册

latex中的绘图手册,画图必备参考文档,tikz&pgf manual手册,版本3.0.0版。

2015-06-30

glibc2.6.1-32.tar.bz2

glibc2.6.1 32位版本,spec06交叉编译必备。

2015-05-20

glibc2.6.1-64.tar.bz2

glibc运行库,spec2006交叉编译所需要的库。

2015-05-20

alpha-crosstool

alpha平台交叉编译工具,spec2006交叉编译必备。

2015-05-20

setuptools-15.2.zip

python中pip安装必备的环境,要先安装这个包。

2015-05-16

pip-1.2..1.tar.gz

python中的包管理工具,安装pip-1.2..1.tar.gz的必备软件包。

2015-05-16

pydot-1.0.28.tar.gz

gem5中生成config.dot.svg的必备文件,适合查看体系结构。

2015-05-16

gem5官方入门文档

gem5模拟器的详细介绍,各个部分的系统介绍,入门必看。

2014-12-18

gem5-tutorial

gem5官方的文档,适合于新手入门时使用,有必要仔细通读。

2014-12-18

putty的内置工具plink.exe

putty的内置工具plink.exe,可用于emacs结合tramp连接远程服务器时使用

2014-12-04

OriginPro9.2 32位破解版安装方法

OriginPro9.2 32位破解版安装方法,详细介绍了安装步骤。

2014-11-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除