From 237d2f260bd8645d31b083879784e96e9c5c27f5 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 10 Nov 2017 03:36:57 -0800 Subject: 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 --- src/python/m5/util/convert.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') 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') -- cgit v1.2.3