Re: [gem5-users] Issues in handling compressed data for L3 cache

2018-05-30 Thread Srajan Khare
rajan Khare, On Tue, May 29, 2018 at 4:44 PM, Srajan Khare wrote: > Hi Jason, > > As per your suggestion I included the recently committed patch (for > creating sector cache) with my gem5 version. Then after, just to get an > idea of Sector Cache performance, I ran simulation for *b

Re: [gem5-users] Issues in handling compressed data for L3 cache

2018-05-29 Thread Srajan Khare
ailed assertion so that I can go ahead with my actual compressed cache implementation? Thanks a lot in advance! ~Srajan Khare On Tue, May 29, 2018 at 3:12 PM, Srajan Khare wrote: > Thank you Jason for your quick reply! > > > On Sat, May 19, 2018 at 12:50 PM, Srajan Khare wrote: > &g

Re: [gem5-users] Issues in handling compressed data for L3 cache

2018-05-29 Thread Srajan Khare
Thank you Jason for your quick reply! On Sat, May 19, 2018 at 12:50 PM, Srajan Khare wrote: > Hi friends, > > I have been implementing Cache Compression algorithm in gem5. > So in order to tap data for all the writes into L3 cache I have been using > handleFill() function in c

[gem5-users] Issues in handling compressed data for L3 cache

2018-05-19 Thread Srajan Khare
Hi friends, I have been implementing Cache Compression algorithm in gem5. So in order to tap data for all the writes into L3 cache I have been using handleFill() function in cache.cc file. I have been using following command to transfer data in compressed format into L3 cache. ---*Cod