diff options
Diffstat (limited to 'tools/perf/scripts/python/stat-cpi.py')
-rw-r--r-- | tools/perf/scripts/python/stat-cpi.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/perf/scripts/python/stat-cpi.py b/tools/perf/scripts/python/stat-cpi.py index a81ad8835a74..01fa933ff3cf 100644 --- a/tools/perf/scripts/python/stat-cpi.py +++ b/tools/perf/scripts/python/stat-cpi.py | |||
@@ -1,5 +1,7 @@ | |||
1 | # SPDX-License-Identifier: GPL-2.0 | 1 | # SPDX-License-Identifier: GPL-2.0 |
2 | 2 | ||
3 | from __future__ import print_function | ||
4 | |||
3 | data = {} | 5 | data = {} |
4 | times = [] | 6 | times = [] |
5 | threads = [] | 7 | threads = [] |
@@ -19,8 +21,8 @@ def store_key(time, cpu, thread): | |||
19 | threads.append(thread) | 21 | threads.append(thread) |
20 | 22 | ||
21 | def store(time, event, cpu, thread, val, ena, run): | 23 | def store(time, event, cpu, thread, val, ena, run): |
22 | #print "event %s cpu %d, thread %d, time %d, val %d, ena %d, run %d" % \ | 24 | #print("event %s cpu %d, thread %d, time %d, val %d, ena %d, run %d" % |
23 | # (event, cpu, thread, time, val, ena, run) | 25 | # (event, cpu, thread, time, val, ena, run)) |
24 | 26 | ||
25 | store_key(time, cpu, thread) | 27 | store_key(time, cpu, thread) |
26 | key = get_key(time, event, cpu, thread) | 28 | key = get_key(time, event, cpu, thread) |
@@ -58,7 +60,7 @@ def stat__interval(time): | |||
58 | if ins != 0: | 60 | if ins != 0: |
59 | cpi = cyc/float(ins) | 61 | cpi = cyc/float(ins) |
60 | 62 | ||
61 | print "%15f: cpu %d, thread %d -> cpi %f (%d/%d)" % (time/(float(1000000000)), cpu, thread, cpi, cyc, ins) | 63 | print("%15f: cpu %d, thread %d -> cpi %f (%d/%d)" % (time/(float(1000000000)), cpu, thread, cpi, cyc, ins)) |
62 | 64 | ||
63 | def trace_end(): | 65 | def trace_end(): |
64 | pass | 66 | pass |
@@ -74,4 +76,4 @@ def trace_end(): | |||
74 | # if ins != 0: | 76 | # if ins != 0: |
75 | # cpi = cyc/float(ins) | 77 | # cpi = cyc/float(ins) |
76 | # | 78 | # |
77 | # print "time %.9f, cpu %d, thread %d -> cpi %f" % (time/(float(1000000000)), cpu, thread, cpi) | 79 | # print("time %.9f, cpu %d, thread %d -> cpi %f" % (time/(float(1000000000)), cpu, thread, cpi)) |