[gem5-users] Re: Run benchmark with multiple input arguments

2022-02-22 Thread Rosen Lu via gem5-users
t; > > > > ---- Activat Tue, 22 Feb 2022 07:17:57 +0100 *Rosen Lu via gem5-users > >* va escriure > > Dear All, > > I just downloaded the version from > https://gem5.googlesource.com/public/gem5. I want to run a benchmark with > multiple input arguments. For

[gem5-users] Run benchmark with multiple input arguments

2022-02-21 Thread Rosen Lu via gem5-users
Dear All, I just downloaded the version from https://gem5.googlesource.com/public/gem5. I want to run a benchmark with multiple input arguments. For example, run the command ./*queens -c 10 *in SE mode. I remember in a version from a few years ago, I could run it in the simulator with the -o

[gem5-users] dump stats for every N misses

2020-03-14 Thread Rosen Lu
Hello everyone, I know that we can call periodStatDump() in se.py to dump stats for every N cycles. Now I want to dump starts for every N misses, define the period with the number of misses. Does gem5 has any function to support that? Any ideas or suggestions would be helpful. Thank you very

[gem5-users] MSHR entry number

2020-02-14 Thread Rosen Lu
Dear All, I wonder how to change the mshr entry number? I use X86 O3 detailed CPU model. I edited the Caches.py, and set the L2 cache mshrs to 20. class L2Cache(Cache): assoc = 8 tag_latency = 12 data_latency = 12 response_latency = 12 mshrs = 20 tgts_per_mshr = 12

Re: [gem5-users] Pipelined Cache

2020-01-03 Thread Rosen Lu
s" that you can send "packets" over. All of the caches accept at least > one packet per cycle (with some caveats depending on conflicting addresses). > > Cheers, > Jason > > On Tue, Dec 24, 2019 at 5:56 AM Rosen Lu wrote: > >> Hello, >> >

[gem5-users] Pipelined Cache

2019-12-24 Thread Rosen Lu
Hello, I have a question regarding the pipelined cache. The pipelined cache architecture can be accessed every clock cycle and thereby, enhances bandwidth and overall processor performance. Pipelining divides the cache latency into multiple stages so that multiple accesses can be made

[gem5-users] Errors while running some SPEC2006 benchmarks

2019-12-23 Thread Rosen Lu
Hello, I am testing SPEC CPU2006 benchmarks on X86 SE mode, these benchmarks return an error, I posted error messages below. ===bwaves=== command line: build/X86/gem5.opt ./configs/example/se.py --caches --cpu-type=DerivO3CPU --mem-type=SimpleMemory --mem-size=8192MB -c

Re: [gem5-users] statistics for each cycle(Tick)

2019-11-25 Thread Rosen Lu
> Francisco Carlos Silva Junior > Ph.D. student > > > -- > *De:* gem5-users em nome de Rosen Lu < > wisdom@gmail.com> > *Enviado:* segunda-feira, 25 de novembro de 2019 15:39 > *Para:* gem5 users mailing list > *Assunto:* [gem5-u

[gem5-users] statistics for each cycle(Tick)

2019-11-25 Thread Rosen Lu
Hello, I want to implement two functions, these two functions need to be called every cycle(Tick). The first function needs to return the number of outstanding demand misses in MSHR, it shows the total number of misses in MSHR for each cycle. The second function needs to return the number of hits

[gem5-users] Count misses in a cycle

2019-09-16 Thread Rosen Lu
Hi All, I am trying to count the maximum number of misses that can be occurred during the same cycle in O3. Do you have any suggestion about how to implement it? Thanks in advance for your help. ___ gem5-users mailing list gem5-users@gem5.org

[gem5-users] fast-forward fatal

2019-07-30 Thread Rosen Lu
Hello, I am trying to run a fast-forward simulation, and I got an error: ''' build/X86/gem5.opt configs/example/se.py --fast-forward=100 --cpu-type=DerivO3CPU --caches --l1d_size=32kB --l1d_assoc=2 --l1i_size=32kB --l1i_assoc=2 -c tests/test-progs/hello/bin/x86/linux/hello fatal: Number of ISAs

Re: [gem5-users] MemTraceProbe cannot be imported successfully

2019-07-25 Thread Rosen Lu
I will try. On Thu, Jul 25, 2019 at 10:23 Abhishek Singh wrote: > Can you try older version of libptotoc like libprotoc 2.6.1? > > On Thu, Jul 25, 2019 at 11:18 AM Rosen Lu wrote: > >> Hi, >> >> I set the environment as follow: >> >> export PA

Re: [gem5-users] MemTraceProbe cannot be imported successfully

2019-07-25 Thread Rosen Lu
cating the protoc bin and setting the environment PROTOC > to it? > > Serhat > > -- > *From:* gem5-users [gem5-users-boun...@gem5.org] on behalf of Rosen Lu [ > wisdom@gmail.com] > *Sent:* 25 July 2019 15:06 > *To:* gem5 users mailing

Re: [gem5-users] MemTraceProbe cannot be imported successfully

2019-07-25 Thread Rosen Lu
gem5, you should use: > *** > from m5.objects.CommMonitor import * > from m5.objects.MemTraceProbe import * > *** > > instead of "from import *" > > I just did a clean install / build and did not have any errors. > > Kind regards > Serhat > > ___