[gem5-users] how to enable DPRINT statements

2018-04-20 Thread liuchen
Hi, I think you are not using the --mem-type function, you need to speciify the mem-type first. --list-mem-type will show all the mem-types you can use. ___ gem5-users mailing list gem5-users@gem5.org

[gem5-users] How to make several requests just go through the some certain cache level?

2018-04-20 Thread liuchen
Hi all, I wonder how to make some requests which picked randomly to pass through some certain cache level and go straight to the upper or down cache level or memory? In system.hh, bypassCaches() just bypass all the caches levels and it returns a bool value. So should I change this function?

Re: [gem5-users] Nan & 0 for x86 multicore se simulation

2018-04-20 Thread liuchen
OK, Thanks for your help, I will try it out. At 2018-04-19 20:12:26, "liuchen" <13630583...@163.com> wrote: Thanks! But can you tell me what is the gem5 master? Thanks! At 2018-04-19 18:45:47, "liuchen" <13630583...@163.com> wrote: Hi, I am runnn

Re: [gem5-users] Nan & 0 for x86 multicore se simulation

2018-04-19 Thread liuchen
Thanks! But can you tell me what is the gem5 master? Thanks! At 2018-04-19 18:45:47, "liuchen" <13630583...@163.com> wrote: Hi, I am runnng X86 se quad-core 3-level cache spec2006 simulation on an older version of gem5(probably a 2012 stable version). I run these b

[gem5-users] Nan & 0 for x86 multicore se simulation

2018-04-19 Thread liuchen
Hi, I am runnng X86 se quad-core 3-level cache spec2006 simulation on an older version of gem5(probably a 2012 stable version). I run these benchmarks use -F and -I and the L1 and L2 are private. While after the program finished, I checked the stats.txt. There are only stats of some macro

[gem5-users] nan an 0 in stats.txt in running multicore spec2k in ALPHA

2018-01-11 Thread liuchen
Hello : I am running multicore spec2k in gem5 se.py , but after fast forward i get nan and 0 in stats.txt could anyone tell me what is the problem ? My command line is time ../build/ALPHA/gem5.opt --debug-flags=Cache,CacheRepl ../configs/example/se.py \

[gem5-users] nan and 0 in stats.txt while running spec2k multicore in detailed

2018-01-11 Thread liuchen
Hello : ___ gem5-users mailing list gem5-users@gem5.org http://m5sim.org/cgi-bin/mailman/listinfo/gem5-users

[gem5-users] simulate() limit problem

2017-11-16 Thread liuchen
Hello: while i was running splash2 Alpha on gem5 alpha se multicore mode,I always have a "Existing tick 18446744073709551615 simulate() limit reached" problem. I changed simulate.cc to shadow the limit_event,but it didn't work,it will cause core dumped.splash2 i used is from the gem5

[gem5-users] How to get ruby cache state and events infomation ?

2017-07-10 Thread liuchen
Hi all, I am currently using gem5 ruby to get info about cache state and events that triggers the state change.I know that in gems ,CacheState can be automatically printed by a RubySlicc_Profiler_interface.c/h,but now gem5 does not have this file any more .So what I want to know about ruby

[gem5-users] how to get the number of requests of an event?

2017-07-09 Thread liuchen
Hi all,It's me again. I want to get or print the number of reqeusts issued or triggered by an protocol event such as L1_to_L2,Do you guys know how to exactly get this information?Which file should I change? Again,So many thanks! ___ gem5-users

[gem5-users] How to add gems protocol to gem5

2017-07-06 Thread liuchen
': File "/home/liuchen/gem5_docu/gem5/SConstruct", line 1240: exports = 'env') File "/usr/lib/scons/SCons/Script/SConscript.py", line 609: return method(*args, **kw) File "/usr/lib/scons/SCons/Script/SConscript.py", line 546: return _SConscript(self.

[gem5-users] How to add gems protocol into gem5?

2017-07-06 Thread liuchen
Hi ,all ___ gem5-users mailing list gem5-users@gem5.org http://m5sim.org/cgi-bin/mailman/listinfo/gem5-users

[gem5-users] How to run gem5 ruby in ALPHA?

2017-05-05 Thread liuchen
Hi: I am using gem5 to test ALPHA memory system.I found that classic cache is not inclusive,so I move on to ruby.But I don't know how to use ruby system. Is it OK just add an option"--ruby" to command line?And how to use configs/ruby/MESI_two/three_level.py?is ruby strictly inclusive or not?

[gem5-users] How to count number of L2 Cache accesses according to different CPUId in multiCore se.py in gem5?

2017-03-30 Thread liuchen
Hi All: I want to count number of L2 Cache accesses according to different CPU ID in multiCore( se.py )in gem5 ?I am using spec2k benchamrk.I want to use Stats:: class built in gem5 ? Do you guys know how to accomplish this ? Or there is another way to count? Thanks for you all!

[gem5-users] How to run multiprogram in different CPU in gem5?

2017-03-23 Thread liuchen
Hi gem5 users! I want to run multiprogram in different CPU in gem5,but i set opotions in se.py -n 2 --cmd={../hello,../hello} it can run ,but there is only cpu0 is working,does anyone knows how get cpu1 to be in work? Thanks a lot! ___