Skip to content

Commit 5e32adc

Browse files
JinzhouSurafaeljw
authored andcommitted
tools/power/x86/amd_pstate_tracer: Add tracer tool for AMD P-state
Intel P-state tracer is a useful tool to tune and debug Intel P-state driver. AMD P-state tracer import intel pstate tracer. This tool can be used to analyze the performance of AMD P-state tracer. Now CPU frequency, load and desired perf can be traced. Signed-off-by: Jinzhou Su <Jinzhou.Su@amd.com> Reviewed-by: Huang Rui <ray.huang@amd.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent ab3ff9f commit 5e32adc

2 files changed

Lines changed: 355 additions & 0 deletions

File tree

MAINTAINERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,6 +1002,7 @@ L: linux-pm@vger.kernel.org
10021002
S: Supported
10031003
F: Documentation/admin-guide/pm/amd-pstate.rst
10041004
F: drivers/cpufreq/amd-pstate*
1005+
F: tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
10051006

10061007
AMD PTDMA DRIVER
10071008
M: Sanjay R Mehta <sanju.mehta@amd.com>
Lines changed: 354 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,354 @@
1+
#!/usr/bin/env python3
2+
# SPDX-License-Identifier: GPL-2.0-only
3+
# -*- coding: utf-8 -*-
4+
#
5+
""" This utility can be used to debug and tune the performance of the
6+
AMD P-State driver. It imports intel_pstate_tracer to analyze AMD P-State
7+
trace event.
8+
9+
Prerequisites:
10+
Python version 2.7.x or higher
11+
gnuplot 5.0 or higher
12+
gnuplot-py 1.8 or higher
13+
(Most of the distributions have these required packages. They may be called
14+
gnuplot-py, phython-gnuplot or phython3-gnuplot, gnuplot-nox, ... )
15+
16+
Kernel config for Linux trace is enabled
17+
18+
see print_help(): for Usage and Output details
19+
20+
"""
21+
from __future__ import print_function
22+
from datetime import datetime
23+
import subprocess
24+
import os
25+
import time
26+
import re
27+
import signal
28+
import sys
29+
import getopt
30+
import Gnuplot
31+
from numpy import *
32+
from decimal import *
33+
sys.path.append('../intel_pstate_tracer')
34+
#import intel_pstate_tracer
35+
import intel_pstate_tracer as ipt
36+
37+
__license__ = "GPL version 2"
38+
39+
MAX_CPUS = 256
40+
# Define the csv file columns
41+
C_COMM = 15
42+
C_ELAPSED = 14
43+
C_SAMPLE = 13
44+
C_DURATION = 12
45+
C_LOAD = 11
46+
C_TSC = 10
47+
C_APERF = 9
48+
C_MPERF = 8
49+
C_FREQ = 7
50+
C_MAX_PERF = 6
51+
C_DES_PERF = 5
52+
C_MIN_PERF = 4
53+
C_USEC = 3
54+
C_SEC = 2
55+
C_CPU = 1
56+
57+
global sample_num, last_sec_cpu, last_usec_cpu, start_time, test_name, trace_file
58+
59+
getcontext().prec = 11
60+
61+
sample_num =0
62+
last_sec_cpu = [0] * MAX_CPUS
63+
last_usec_cpu = [0] * MAX_CPUS
64+
65+
def plot_per_cpu_freq(cpu_index):
66+
""" Plot per cpu frequency """
67+
68+
file_name = 'cpu{:0>3}.csv'.format(cpu_index)
69+
if os.path.exists(file_name):
70+
output_png = "cpu%03d_frequency.png" % cpu_index
71+
g_plot = ipt.common_gnuplot_settings()
72+
g_plot('set output "' + output_png + '"')
73+
g_plot('set yrange [0:7]')
74+
g_plot('set ytics 0, 1')
75+
g_plot('set ylabel "CPU Frequency (GHz)"')
76+
g_plot('set title "{} : frequency : CPU {:0>3} : {:%F %H:%M}"'.format(test_name, cpu_index, datetime.now()))
77+
g_plot('set ylabel "CPU frequency"')
78+
g_plot('set key off')
79+
ipt.set_4_plot_linestyles(g_plot)
80+
g_plot('plot "' + file_name + '" using {:d}:{:d} with linespoints linestyle 1 axis x1y1'.format(C_ELAPSED, C_FREQ))
81+
82+
def plot_per_cpu_des_perf(cpu_index):
83+
""" Plot per cpu desired perf """
84+
85+
file_name = 'cpu{:0>3}.csv'.format(cpu_index)
86+
if os.path.exists(file_name):
87+
output_png = "cpu%03d_des_perf.png" % cpu_index
88+
g_plot = ipt.common_gnuplot_settings()
89+
g_plot('set output "' + output_png + '"')
90+
g_plot('set yrange [0:255]')
91+
g_plot('set ylabel "des perf"')
92+
g_plot('set title "{} : cpu des perf : CPU {:0>3} : {:%F %H:%M}"'.format(test_name, cpu_index, datetime.now()))
93+
g_plot('set key off')
94+
ipt.set_4_plot_linestyles(g_plot)
95+
g_plot('plot "' + file_name + '" using {:d}:{:d} with linespoints linestyle 1 axis x1y1'.format(C_ELAPSED, C_DES_PERF))
96+
97+
def plot_per_cpu_load(cpu_index):
98+
""" Plot per cpu load """
99+
100+
file_name = 'cpu{:0>3}.csv'.format(cpu_index)
101+
if os.path.exists(file_name):
102+
output_png = "cpu%03d_load.png" % cpu_index
103+
g_plot = ipt.common_gnuplot_settings()
104+
g_plot('set output "' + output_png + '"')
105+
g_plot('set yrange [0:100]')
106+
g_plot('set ytics 0, 10')
107+
g_plot('set ylabel "CPU load (percent)"')
108+
g_plot('set title "{} : cpu load : CPU {:0>3} : {:%F %H:%M}"'.format(test_name, cpu_index, datetime.now()))
109+
g_plot('set key off')
110+
ipt.set_4_plot_linestyles(g_plot)
111+
g_plot('plot "' + file_name + '" using {:d}:{:d} with linespoints linestyle 1 axis x1y1'.format(C_ELAPSED, C_LOAD))
112+
113+
def plot_all_cpu_frequency():
114+
""" Plot all cpu frequencies """
115+
116+
output_png = 'all_cpu_frequencies.png'
117+
g_plot = ipt.common_gnuplot_settings()
118+
g_plot('set output "' + output_png + '"')
119+
g_plot('set ylabel "CPU Frequency (GHz)"')
120+
g_plot('set title "{} : cpu frequencies : {:%F %H:%M}"'.format(test_name, datetime.now()))
121+
122+
title_list = subprocess.check_output('ls cpu???.csv | sed -e \'s/.csv//\'',shell=True).decode('utf-8').replace('\n', ' ')
123+
plot_str = "plot for [i in title_list] i.'.csv' using {:d}:{:d} pt 7 ps 1 title i".format(C_ELAPSED, C_FREQ)
124+
g_plot('title_list = "{}"'.format(title_list))
125+
g_plot(plot_str)
126+
127+
def plot_all_cpu_des_perf():
128+
""" Plot all cpu desired perf """
129+
130+
output_png = 'all_cpu_des_perf.png'
131+
g_plot = ipt.common_gnuplot_settings()
132+
g_plot('set output "' + output_png + '"')
133+
g_plot('set ylabel "des perf"')
134+
g_plot('set title "{} : cpu des perf : {:%F %H:%M}"'.format(test_name, datetime.now()))
135+
136+
title_list = subprocess.check_output('ls cpu???.csv | sed -e \'s/.csv//\'',shell=True).decode('utf-8').replace('\n', ' ')
137+
plot_str = "plot for [i in title_list] i.'.csv' using {:d}:{:d} pt 255 ps 1 title i".format(C_ELAPSED, C_DES_PERF)
138+
g_plot('title_list = "{}"'.format(title_list))
139+
g_plot(plot_str)
140+
141+
def plot_all_cpu_load():
142+
""" Plot all cpu load """
143+
144+
output_png = 'all_cpu_load.png'
145+
g_plot = ipt.common_gnuplot_settings()
146+
g_plot('set output "' + output_png + '"')
147+
g_plot('set yrange [0:100]')
148+
g_plot('set ylabel "CPU load (percent)"')
149+
g_plot('set title "{} : cpu load : {:%F %H:%M}"'.format(test_name, datetime.now()))
150+
151+
title_list = subprocess.check_output('ls cpu???.csv | sed -e \'s/.csv//\'',shell=True).decode('utf-8').replace('\n', ' ')
152+
plot_str = "plot for [i in title_list] i.'.csv' using {:d}:{:d} pt 255 ps 1 title i".format(C_ELAPSED, C_LOAD)
153+
g_plot('title_list = "{}"'.format(title_list))
154+
g_plot(plot_str)
155+
156+
def store_csv(cpu_int, time_pre_dec, time_post_dec, min_perf, des_perf, max_perf, freq_ghz, mperf, aperf, tsc, common_comm, load, duration_ms, sample_num, elapsed_time, cpu_mask):
157+
""" Store master csv file information """
158+
159+
global graph_data_present
160+
161+
if cpu_mask[cpu_int] == 0:
162+
return
163+
164+
try:
165+
f_handle = open('cpu.csv', 'a')
166+
string_buffer = "CPU_%03u, %05u, %06u, %u, %u, %u, %.4f, %u, %u, %u, %.2f, %.3f, %u, %.3f, %s\n" % (cpu_int, int(time_pre_dec), int(time_post_dec), int(min_perf), int(des_perf), int(max_perf), freq_ghz, int(mperf), int(aperf), int(tsc), load, duration_ms, sample_num, elapsed_time, common_comm)
167+
f_handle.write(string_buffer)
168+
f_handle.close()
169+
except:
170+
print('IO error cpu.csv')
171+
return
172+
173+
graph_data_present = True;
174+
175+
176+
def cleanup_data_files():
177+
""" clean up existing data files """
178+
179+
if os.path.exists('cpu.csv'):
180+
os.remove('cpu.csv')
181+
f_handle = open('cpu.csv', 'a')
182+
f_handle.write('common_cpu, common_secs, common_usecs, min_perf, des_perf, max_perf, freq, mperf, aperf, tsc, load, duration_ms, sample_num, elapsed_time, common_comm')
183+
f_handle.write('\n')
184+
f_handle.close()
185+
186+
def read_trace_data(file_name, cpu_mask):
187+
""" Read and parse trace data """
188+
189+
global current_max_cpu
190+
global sample_num, last_sec_cpu, last_usec_cpu, start_time
191+
192+
try:
193+
data = open(file_name, 'r').read()
194+
except:
195+
print('Error opening ', file_name)
196+
sys.exit(2)
197+
198+
for line in data.splitlines():
199+
search_obj = \
200+
re.search(r'(^(.*?)\[)((\d+)[^\]])(.*?)(\d+)([.])(\d+)(.*?amd_min_perf=)(\d+)(.*?amd_des_perf=)(\d+)(.*?amd_max_perf=)(\d+)(.*?freq=)(\d+)(.*?mperf=)(\d+)(.*?aperf=)(\d+)(.*?tsc=)(\d+)'
201+
, line)
202+
203+
if search_obj:
204+
cpu = search_obj.group(3)
205+
cpu_int = int(cpu)
206+
cpu = str(cpu_int)
207+
208+
time_pre_dec = search_obj.group(6)
209+
time_post_dec = search_obj.group(8)
210+
min_perf = search_obj.group(10)
211+
des_perf = search_obj.group(12)
212+
max_perf = search_obj.group(14)
213+
freq = search_obj.group(16)
214+
mperf = search_obj.group(18)
215+
aperf = search_obj.group(20)
216+
tsc = search_obj.group(22)
217+
218+
common_comm = search_obj.group(2).replace(' ', '')
219+
220+
if sample_num == 0 :
221+
start_time = Decimal(time_pre_dec) + Decimal(time_post_dec) / Decimal(1000000)
222+
sample_num += 1
223+
224+
if last_sec_cpu[cpu_int] == 0 :
225+
last_sec_cpu[cpu_int] = time_pre_dec
226+
last_usec_cpu[cpu_int] = time_post_dec
227+
else :
228+
duration_us = (int(time_pre_dec) - int(last_sec_cpu[cpu_int])) * 1000000 + (int(time_post_dec) - int(last_usec_cpu[cpu_int]))
229+
duration_ms = Decimal(duration_us) / Decimal(1000)
230+
last_sec_cpu[cpu_int] = time_pre_dec
231+
last_usec_cpu[cpu_int] = time_post_dec
232+
elapsed_time = Decimal(time_pre_dec) + Decimal(time_post_dec) / Decimal(1000000) - start_time
233+
load = Decimal(int(mperf)*100)/ Decimal(tsc)
234+
freq_ghz = Decimal(freq)/Decimal(1000000)
235+
store_csv(cpu_int, time_pre_dec, time_post_dec, min_perf, des_perf, max_perf, freq_ghz, mperf, aperf, tsc, common_comm, load, duration_ms, sample_num, elapsed_time, cpu_mask)
236+
237+
if cpu_int > current_max_cpu:
238+
current_max_cpu = cpu_int
239+
# Now separate the main overall csv file into per CPU csv files.
240+
ipt.split_csv(current_max_cpu, cpu_mask)
241+
242+
243+
def signal_handler(signal, frame):
244+
print(' SIGINT: Forcing cleanup before exit.')
245+
if interval:
246+
ipt.disable_trace(trace_file)
247+
ipt.clear_trace_file()
248+
ipt.free_trace_buffer()
249+
sys.exit(0)
250+
251+
trace_file = "/sys/kernel/debug/tracing/events/amd_cpu/enable"
252+
signal.signal(signal.SIGINT, signal_handler)
253+
254+
interval = ""
255+
file_name = ""
256+
cpu_list = ""
257+
test_name = ""
258+
memory = "10240"
259+
graph_data_present = False;
260+
261+
valid1 = False
262+
valid2 = False
263+
264+
cpu_mask = zeros((MAX_CPUS,), dtype=int)
265+
266+
267+
try:
268+
opts, args = getopt.getopt(sys.argv[1:],"ht:i:c:n:m:",["help","trace_file=","interval=","cpu=","name=","memory="])
269+
except getopt.GetoptError:
270+
ipt.print_help('amd_pstate')
271+
sys.exit(2)
272+
for opt, arg in opts:
273+
if opt == '-h':
274+
print()
275+
sys.exit()
276+
elif opt in ("-t", "--trace_file"):
277+
valid1 = True
278+
location = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__)))
279+
file_name = os.path.join(location, arg)
280+
elif opt in ("-i", "--interval"):
281+
valid1 = True
282+
interval = arg
283+
elif opt in ("-c", "--cpu"):
284+
cpu_list = arg
285+
elif opt in ("-n", "--name"):
286+
valid2 = True
287+
test_name = arg
288+
elif opt in ("-m", "--memory"):
289+
memory = arg
290+
291+
if not (valid1 and valid2):
292+
ipt.print_help('amd_pstate')
293+
sys.exit()
294+
295+
if cpu_list:
296+
for p in re.split("[,]", cpu_list):
297+
if int(p) < MAX_CPUS :
298+
cpu_mask[int(p)] = 1
299+
else:
300+
for i in range (0, MAX_CPUS):
301+
cpu_mask[i] = 1
302+
303+
if not os.path.exists('results'):
304+
os.mkdir('results')
305+
ipt.fix_ownership('results')
306+
307+
os.chdir('results')
308+
if os.path.exists(test_name):
309+
print('The test name directory already exists. Please provide a unique test name. Test re-run not supported, yet.')
310+
sys.exit()
311+
os.mkdir(test_name)
312+
ipt.fix_ownership(test_name)
313+
os.chdir(test_name)
314+
315+
cur_version = sys.version_info
316+
print('python version (should be >= 2.7):')
317+
print(cur_version)
318+
319+
cleanup_data_files()
320+
321+
if interval:
322+
file_name = "/sys/kernel/debug/tracing/trace"
323+
ipt.clear_trace_file()
324+
ipt.set_trace_buffer_size(memory)
325+
ipt.enable_trace(trace_file)
326+
time.sleep(int(interval))
327+
ipt.disable_trace(trace_file)
328+
329+
current_max_cpu = 0
330+
331+
read_trace_data(file_name, cpu_mask)
332+
333+
if interval:
334+
ipt.clear_trace_file()
335+
ipt.free_trace_buffer()
336+
337+
if graph_data_present == False:
338+
print('No valid data to plot')
339+
sys.exit(2)
340+
341+
for cpu_no in range(0, current_max_cpu + 1):
342+
plot_per_cpu_freq(cpu_no)
343+
plot_per_cpu_des_perf(cpu_no)
344+
plot_per_cpu_load(cpu_no)
345+
346+
plot_all_cpu_des_perf()
347+
plot_all_cpu_frequency()
348+
plot_all_cpu_load()
349+
350+
for root, dirs, files in os.walk('.'):
351+
for f in files:
352+
ipt.fix_ownership(f)
353+
354+
os.chdir('../../')

0 commit comments

Comments
 (0)