[gem5-users] gem5 : Cache Line Size

2014-04-25 Thread Chetan Patil
Hi, I am trying to simulate X86 with varying cache line size. Following are the arguments I pass for Full System Mode simulation: build/X86/gem5.opt configs/example/fs.py --num-cpus=8 --caches --l1d_size=16kB --l1i_size=16kB --num-l2caches=1 --l2cache --l2_size=1MB --cacheline_size=64 --kernel= -

Re: [gem5-users] gem5 : Cache Line Size

2014-04-28 Thread Jack Harvard
Probably something you will need to fix if you change the cache line size away from 64 bytes, would be great if you could post back the patch to fix the issue. Thanks, Jack Jack Harvard On Fri, Apr 25, 2014 at 8:06 PM, Chetan Patil wrote: > Hi, > > I am trying to simulate X86 with varying cac

Re: [gem5-users] gem5 : Cache Line Size

2014-08-03 Thread faris priadi via gem5-users
Hi Chetan, Try to set num-l2caches 8 (same the number of cpu). If doesn't work try to used ruby_fs.py. i hope it work for you. As far as I know default gem5 cache line size that can be used are 16, 32, 64 and 128. I tried to modify that can used 256 bytes too in common/Caches.py, but unfortunat