Re: [gem5-users] How to send write requests directly from Ruby L1 controllers?

2020-03-15 Thread Abhishek Singh
Thanks ! On Sun, Mar 15, 2020 at 6:48 PM Kevin Dong wrote: > Hi everyone, > > I've solved this problem, and this is a note for the future readers: > > Instead of directly calling queueMemoryWrite() within the L1 controller, > though the type of its parent class, AbstractController, is as same

Re: [gem5-users] How to send write requests directly from Ruby L1 controllers?

2020-03-15 Thread Kevin Dong
Hi everyone, I've solved this problem, and this is a note for the future readers: Instead of directly calling queueMemoryWrite() within the L1 controller, though the type of its parent class, AbstractController, is as same as that of the directory controller. I found that it may be easier to

[gem5-users] How to send write requests directly from Ruby L1 controllers?

2020-03-15 Thread Kevin Dong
Hi everyone, I am using Ruby cache with the MESI 2-level protocol. I found that only the directory controller can call queueMemoryWrite() to send memory write requests into the memory controller, but not the L1 caches directly. Should I add some extra interconnections for Ruby to connect between