From: Nathan Binkert Date: Wed, 6 Apr 2005 21:59:31 +0000 (-0400) Subject: Fix the python NetworkBandwidth conversion function X-Git-Tag: m5_1.0_tutorial~65^2~3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f3544a13f3559e1e51b1f039e6613d5c47e41fa8;p=gem5.git Fix the python NetworkBandwidth conversion function python/m5/convert.py: Fix the NetworkBandwidth conversion function --HG-- extra : convert_revision : 93d9856fe6b59827c116e15835d2ef51292bd6c4 --- diff --git a/python/m5/convert.py b/python/m5/convert.py index 6ccefd2fc..a89303687 100644 --- a/python/m5/convert.py +++ b/python/m5/convert.py @@ -153,15 +153,15 @@ def toNetworkBandwidth(value): raise TypeError, "wrong type '%s' should be str" % type(value) if value.endswith('Tbps'): - return float(value[:-3]) * tera + return float(value[:-4]) * tera elif value.endswith('Gbps'): - return float(value[:-3]) * giga + return float(value[:-4]) * giga elif value.endswith('Mbps'): - return float(value[:-3]) * mega + return float(value[:-4]) * mega elif value.endswith('kbps'): - return float(value[:-3]) * kilo + return float(value[:-4]) * kilo elif value.endswith('bps'): - return float(value[:-2]) + return float(value[:-3]) else: return float(value)