Re: [gem5-users] What is the requirement for cache?

2017-02-20 Thread Jason Lowe-Power
Hello, The SimpleCache in the tutorial is just an example of creating a memory object. It is not meant to be used in simulation. It is not compatible with the rest of gem5's caches, and it does not support any kind of cache coherence. I'm surprised it worked at all in a two-level configuration, as

[gem5-users] What is the requirement for cache?

2017-02-20 Thread 조해윤
Dear all, I'm trying to make my own cache object, which is finally used to simulate the DRAM Cache using DRAMSim2. This is my first time to modify gem5 code, so I have tried to make a simple cache block to satisfy essential functions for a cache. And I saw the tutorials and the sample code of Jas