[gem5-users] Re: Understanding write timing in MemCtrl

2021-06-23 Thread Vincent R. via gem5-users
Hi Jason, thank you very much for your answer. It helped. I just wanted to give some more background on what I'm trying to achieve. In my case the simulation exits normally (final thread context). My test system currently doesn't use caches (but probably will be at a later stage). So current

[gem5-users] Add new command-line option for simulation

2021-06-23 Thread VEDIKA JITENDRA KULKARNI via gem5-users
Hello, I want to add few new command-line options for my simulations. I wanted to understand how to write code for that. For example, in garnet_synth_traffic.py, I can mimic code lines like other options using parser.add_option, but I wanted to know where is the constructor GarnetSyntheticTraffic(

[gem5-users] Re: [Big, Little] clusters with CHI and SE mode

2021-06-23 Thread Javed Osmany via gem5-users
Hello Gabriel Thank you for the pointer. Made a start on this and just wanted to check if I have understood you correctly.. >> 1- Define two more options in CHI.py to specify the number of big (B) and the number of little (L) cpus from the command line Okay, Done. >> 2- Define the L1I

[gem5-users] Re: Add new command-line option for simulation

2021-06-23 Thread Bharadwaj, Srikant via gem5-users
[Public] Hi Vedika, You will have to create parameters in the SimObject of GarnetNetwork and GarnetRouter and then access them in Router.cc and InputUnit.cc You can follow how this is done for vcs_per_vnet variable: 1. Have a command line in configs/network/Network.py to take in the command lin

[gem5-users] gem5 Minor release: v21.0.1

2021-06-23 Thread Bobby Bruce via gem5-users
Dear all. We're happy to announce our first minor release: version 21.0.1! This release consists entirely of bug fixes for v21.0 users. More information on exactly what has been fixed can be found here: https://gem5.googlesource.com/public/gem5/+/refs/tags/v21.0.1.0/RELEASE-NOTES.md#version-21_0_

[gem5-users] Re: Add new command-line option for simulation

2021-06-23 Thread VEDIKA JITENDRA KULKARNI via gem5-users
Hi Srikant, Thanks a lot for the step-wise instructions! Will do that. Regards, Vedika From: Bharadwaj, Srikant Sent: 24 June 2021 00:34 To: gem5 users mailing list Cc: VEDIKA JITENDRA KULKARNI Subject: RE: Add new command-line option for simulation [Public]