aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/scripts/python
diff options
context:
space:
mode:
authorTony Jones <tonyj@suse.de>2019-02-22 18:06:16 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2019-02-25 15:17:07 -0500
commite985bf761db7646cebcd236249da08bd264069de (patch)
tree4403de9cc773264d06676d15c0525c029357e9c0 /tools/perf/scripts/python
parent6d22d9991cf37edfe861569e2433342ad56206a7 (diff)
perf script python: Add Python3 support to stat-cpi.py
Support both Python2 and Python3 in the stat-cpi.py script There may be differences in the ordering of output lines due to differences in dictionary ordering etc. However the format within lines should be unchanged. The use of 'from __future__' implies the minimum supported Python2 version is now v2.6 Signed-off-by: Seeteena Thoufeek <s1seetee@linux.vnet.ibm.com> Cc: Jiri Olsa <jolsa@kernel.org> Link: http://lkml.kernel.org/r/20190222230619.17887-13-tonyj@suse.de Signed-off-by: Tony Jones <tonyj@suse.de> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/scripts/python')
-rw-r--r--tools/perf/scripts/python/stat-cpi.py10
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
3from __future__ import print_function
4
3data = {} 5data = {}
4times = [] 6times = []
5threads = [] 7threads = []
@@ -19,8 +21,8 @@ def store_key(time, cpu, thread):
19 threads.append(thread) 21 threads.append(thread)
20 22
21def store(time, event, cpu, thread, val, ena, run): 23def 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
63def trace_end(): 65def 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))