From: Gabe Black Date: Fri, 10 Nov 2017 11:36:57 +0000 (-0800) Subject: util: Add a "toEnergy" function to the convert module. X-Git-Tag: v19.0.0.0~2568 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=237d2f260bd8645d31b083879784e96e9c5c27f5;p=gem5.git util: Add a "toEnergy" function to the convert module. Change-Id: I7299af0e2a6ce9bd2272d6ccb898997336e95e51 Reviewed-on: https://gem5-review.googlesource.com/5623 Reviewed-by: Andreas Sandberg Maintainer: Andreas Sandberg --- diff --git a/src/python/m5/util/convert.py b/src/python/m5/util/convert.py index cffa1bb49..5ae31216b 100644 --- a/src/python/m5/util/convert.py +++ b/src/python/m5/util/convert.py @@ -242,3 +242,6 @@ def toVoltage(value): def toCurrent(value): return toMetricFloat(value, 'current', 'A') + +def toEnergy(value): + return toMetricFloat(value, 'energy', 'J')