diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-21 13:18:40 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-21 13:18:40 +0800 |
commit | c687143defd216196d45b902604aabdeed670594 (patch) | |
tree | f28fe46c7ad516af43abe4370fad16773c2e55fe /bin | |
parent | 537e6c810cbfe8c1d4c81fdcc6d0908d468598ef (diff) | |
download | fg21sim-c687143defd216196d45b902604aabdeed670594.tar.bz2 |
Update the "process time" to "CPU process time"
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fg21sim | 2 |
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__": |