From: Nathan Binkert Date: Sun, 15 Jun 2008 03:42:45 +0000 (-0700) Subject: params: Fix the memory bandwidth parameter X-Git-Tag: m5_2.0_beta6~115 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4afdc40d70db76d895cc9bfe6bf3786d379589b7;p=gem5.git params: Fix the memory bandwidth parameter --- diff --git a/src/python/m5/params.py b/src/python/m5/params.py index c8d0d8f46..938278541 100644 --- a/src/python/m5/params.py +++ b/src/python/m5/params.py @@ -892,7 +892,7 @@ class NetworkBandwidth(float,ParamValue): class MemoryBandwidth(float,ParamValue): cxx_type = 'float' - def __new__(self, value): + def __new__(cls, value): # we want the number of ticks per byte of data val = convert.toMemoryBandwidth(value) return super(cls, MemoryBandwidth).__new__(cls, val)