[<prev] [next>] [day] [month] [year] [list]
Message-ID: <0100016341a74569-b9ac2ac6-f99b-41ed-be0d-f7cb3c69e6de-000000@email.amazonses.com>
Date: Tue, 8 May 2018 21:27:51 +0000
From: Jeremy Cline <jeremy@...ine.org>
To: Peter Zijlstra <peterz@...radead.org>,
Ingo Molnar <mingo@...hat.com>,
Arnaldo Carvalho de Melo <acme@...nel.org>
Cc: Alexander Shishkin <alexander.shishkin@...ux.intel.com>,
Jiri Olsa <jolsa@...hat.com>,
Namhyung Kim <namhyung@...nel.org>,
"Herton R . Krzesinski" <herton@...hat.com>,
linux-perf-users@...r.kernel.org, linux-kernel@...r.kernel.org,
Jeremy Cline <jeremy@...ine.org>
Subject: [PATCH 7/8] perf scripts python: Add Python 3 support to stat-cpi.py
Support both Python 2 and Python 3 in stat-cpi.py. This should have no
functional change.
Signed-off-by: Jeremy Cline <jeremy@...ine.org>
---
tools/perf/scripts/python/stat-cpi.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/tools/perf/scripts/python/stat-cpi.py b/tools/perf/scripts/python/stat-cpi.py
index 8410672efb8b..fc53a03da412 100644
--- a/tools/perf/scripts/python/stat-cpi.py
+++ b/tools/perf/scripts/python/stat-cpi.py
@@ -1,6 +1,8 @@
#!/usr/bin/env python
# SPDX-License-Identifier: GPL-2.0
+from __future__ import print_function
+
data = {}
times = []
threads = []
@@ -59,7 +61,8 @@ def stat__interval(time):
if ins != 0:
cpi = cyc/float(ins)
- print "%15f: cpu %d, thread %d -> cpi %f (%d/%d)" % (time/(float(1000000000)), cpu, thread, cpi, cyc, ins)
+ print("%15f: cpu %d, thread %d -> cpi %f (%d/%d)" %
+ (time/(float(1000000000)), cpu, thread, cpi, cyc, ins))
def trace_end():
pass
--
2.17.0
Powered by blists - more mailing lists