Re: [gem5-users] Difference cpu clock and sys clock

2019-12-03 Thread Nick Giakoumoglou
When writing the bash commant add: --sys-clock=1GHz --cpu-clock=2GHz From: Javed OsmanySent: 27 November 2019 09:16To: gem5 users mailing listSubject: Re: [gem5-users] Difference cpu clock and sys clock Hello If one wants to set the CPU clock to be different to the system clock, how does one go abo

[gem5-users] Disable pre-fetching in l2 cache

2019-12-03 Thread Charitha Saumya
Hi, 1. Can pre-fetching impact the performance of cache replacement policies (e.g. LIP vs LRU)? 2. If so How can I completely disable prefetching in l2 cache? Thanks Charitha ___ gem5-users mailing list gem5-users@gem5.org http://m5sim.org/cgi-bin/mailm

Re: [gem5-users] Disable pre-fetching in l2 cache

2019-12-03 Thread Abhishek Singh
Hi, Prefetching will impact the replacement in a way it can bring non demand dead blocks which will not be referenced in the application and force evict a demand block. You can disable prefetchers by editing src/configs/common/Caches.py and setting the parameter “prefetcher” to NULL just for L2 cac