[gem5-users] Re: --Script parameter cannot be used

2020-11-10 Thread 657029715--- via gem5-users
Hi Gabe: I compiled the m5 utility, do you know how to call it to work? blessing you. Siqing Fu 657029...@qq.com From: Gabe Black via gem5-users Date: 2020-11-10 07:30 To: gem5 users mailing list CC: -17; Gabe Black Subject: [gem5-users] Re: --Script parameter cannot be used The --script opti

[gem5-users] Re: How to create a multicore system with different frequency for each core?

2020-11-10 Thread Đức Anh via gem5-users
Hi Srikant and Gabe, Thank for the help, I was able to set different frequencies for different CPUs. However, I notice that I still need to set the clock_domain for the system through ``` system.clk_domain = SrcClockDomain() system.clk_domain.clock = '1GHz' system.clk_domain.voltage_domain = Volta

[gem5-users] Re: How to simulate multithread, multicore and multiprocessor system ?

2020-11-10 Thread Đức Anh via gem5-users
Hi Ayaz, Thanks for the help. I guess if we don't share anything between the cores then it will be the multi-processor platform, right? Btw, how to enable SMT? I looked through the se.py then look like you only need to use DerivO3CPU and just pass an array of the process in. However, I got this er

[gem5-users] How to limit instructions number repeatedly!

2020-11-10 Thread Tracy Mac via gem5-users
Hi All! I am trying to limit instructions number repeatedly,stop the simulation when the instruction is limited, do other operations, and continue the simulation until the next instruction limit, I find scheduleInstStop()(src/cpu/base.cc) realize this function,but I can't call scheduleInstStop rep