diff options
author | Radhika Jagtap <radhika.jagtap@ARM.com> | 2014-07-01 11:58:22 -0400 |
---|---|---|
committer | Radhika Jagtap <radhika.jagtap@ARM.com> | 2014-07-01 11:58:22 -0400 |
commit | b998a0c6acdda83aefa8b6e0a182c75d73332a13 (patch) | |
tree | 93ab98d4d7ddef84a26ed3d5825d1236fb4f4327 /src/sim | |
parent | 65cea4708e2f2f2cb361e12b6385d4bc29618223 (diff) | |
download | gem5-b998a0c6acdda83aefa8b6e0a182c75d73332a13.tar.xz |
util: Add DVFS perfLevel to checkpoint upgrade script
This patch updates the checkpoint upgrader script. It adds the _perfLevel
variable in the clock domain and voltage domain simObjects used for DVFS.
Diffstat (limited to 'src/sim')
-rw-r--r-- | src/sim/serialize.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/serialize.hh b/src/sim/serialize.hh index 5fc9d7b55..05cb7c50f 100644 --- a/src/sim/serialize.hh +++ b/src/sim/serialize.hh @@ -58,7 +58,7 @@ class EventQueue; * SimObject shouldn't cause the version number to increase, only changes to * existing objects such as serializing/unserializing more state, changing sizes * of serialized arrays, etc. */ -static const uint64_t gem5CheckpointVersion = 0x000000000000000a; +static const uint64_t gem5CheckpointVersion = 0x000000000000000b; template <class T> void paramOut(std::ostream &os, const std::string &name, const T ¶m); |