aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2016-11-21 13:18:40 +0800
committerAaron LI <aaronly.me@outlook.com>2016-11-21 13:18:40 +0800
commitc687143defd216196d45b902604aabdeed670594 (patch)
treef28fe46c7ad516af43abe4370fad16773c2e55fe /bin
parent537e6c810cbfe8c1d4c81fdcc6d0908d468598ef (diff)
downloadfg21sim-c687143defd216196d45b902604aabdeed670594.tar.bz2
Update the "process time" to "CPU process time"
Diffstat (limited to 'bin')
-rwxr-xr-xbin/fg21sim2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/fg21sim b/bin/fg21sim
index eb45365..0e58551 100755
--- a/bin/fg21sim
+++ b/bin/fg21sim
@@ -65,7 +65,7 @@ def main():
t1_stop = time.perf_counter()
t2_stop = time.process_time()
logger.info("Elapsed time: {0:.3f} (s)".format(t1_stop - t1_start))
- logger.info("Process time: {0:.3f} (s)".format(t2_stop - t2_start))
+ logger.info("CPU process time: {0:.3f} (s)".format(t2_stop - t2_start))
if __name__ == "__main__":