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
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,
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
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
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
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
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