[gem5-users] Re: Response Traffic in Garnet2.0

2021-03-11 Thread Bharadwaj, Srikant via gem5-users
Hi Humam, >From what I understand, you are using Garnet standalone to run synthetic >traffic trace. The standalone coherence protocol just sends packets from a synthetic core to a directory. You can change the coherence protocol according to your needs by changing the SLICC files in src/mem/ru

[gem5-users] Re: gem5 GCN3 GPU model docker build issue

2021-03-11 Thread Matt Sinclair via gem5-users
Follow-up: Commit that updates documentation here: https://gem5-review.googlesource.com/c/public/gem5-website/+/42803 Matt On Thu, Mar 11, 2021 at 11:01 AM Matt Sinclair wrote: > Thanks for pointing this out, we will update the documentation to be more > explicit. > > Matt > > On Wed, Mar 10,

[gem5-users] Response Traffic in Garnet2.0

2021-03-11 Thread MOHAMMAD HUMAM KHAN via gem5-users
Hello all, I am currently learning garnet2.0 network and as far as I have explored, it does not have any response packets i.e. no reply is generated when a request is received. The directory simply drops the request packet. I want to know whether there is any way of incorporating response traff

[gem5-users] Re: Simobjects in gem5

2021-03-11 Thread Jason Lowe-Power via gem5-users
It's not terribly useful, but you can list all SimObjects with `gem5.opt --list-simobjects` (or something like that, use `gem5.opt --help` to find the exact argument). You can also check in the src/mem/ directory for files that end in .py. These files are the SimObject description files and all Si

[gem5-users] Re: gem5 GCN3 GPU model docker build issue

2021-03-11 Thread Matt Sinclair via gem5-users
Thanks for pointing this out, we will update the documentation to be more explicit. Matt On Wed, Mar 10, 2021 at 11:06 PM xpf via gem5-users wrote: > Hi, > > I didn't see the instructions say to use stable branch. I follow the > instructions on > http://www.gem5.org/documentation/general_docs/g

[gem5-users] Simobjects in gem5

2021-03-11 Thread 1348046572--- via gem5-users
Hi all, I have studied the gem5 documentation. But now I'm confused about how can I know what SimObjects can I use. Are there any documents I can look up to know all the already implemented SimObjects? For example, if I want to use the memory bus in gem5, I even don't know any other SimObjects'n

[gem5-users] Re: Shutdown x86 Full System simulation

2021-03-11 Thread Deepak Mohan via gem5-users
Thanks Gabe. It worked. Using the following inline assembly from my OS C code shuts down the full system simulator. (We have to emit the instruction opcode using inline assembly) __asm__ volatile (".word 0x040F; .word 0x0021;" : : "D"(0) :); On Thu, Mar 11, 2021 at 10:24 AM Gabe Black via gem5-us