> This might be a trivial question. But, I am trying to understand the flow of > operations in gem5. Where are the stats initialized in gem5? I understand > that every class derived from SimObject have a regStats() method for > initializing stats but where are these called? I am guessing in > /src/python/m5/simulate.py. Yes.
> Also, from what I understand, the stats are not serialized/unserialized. Am > I correct ? Basically, I am trying to run long duration simulations and I > need a feature where in I can checkpoint the state of the system at > intervals so that I can resume from these states later on. There is no support for checkpointing stats, but you can add up all of the stats from your many runs (though be careful because formula stats cannot simply be added together). Nate _______________________________________________ gem5-users mailing list [email protected] http://m5sim.org/cgi-bin/mailman/listinfo/gem5-users
