diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-11-20 23:57:26 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-11-20 23:57:26 -0500 |
commit | d733d168ca104ce690ca5f3396d7b3e336f16db2 (patch) | |
tree | 258ef1f72975fac02dd93c50af52e9ddd5a45fbe /python/m5 | |
parent | 3b8b8384176f3720846765805857c916b7724a8c (diff) | |
download | gem5-d733d168ca104ce690ca5f3396d7b3e336f16db2.tar.xz |
Make it so one can do math with a Clock type in the config files
python/m5/config.py:
Make Clock a NumericParamValue so you can do math with it
--HG--
extra : convert_revision : 7fa548d1a23c604a31d3ecae3853949b064a1830
Diffstat (limited to 'python/m5')
-rw-r--r-- | python/m5/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/config.py b/python/m5/config.py index 33e0a5be7..23292d2dc 100644 --- a/python/m5/config.py +++ b/python/m5/config.py @@ -1231,7 +1231,7 @@ class RootClock(ParamValue): # A generic frequency and/or Latency value. Value is stored as a latency, # but to avoid ambiguity this object does not support numeric ops (* or /). # An explicit conversion to a Latency or Frequency must be made first. -class Clock(ParamValue): +class Clock(NumericParamValue): def __init__(self, value): self.value = getLatency(value) |