Skip to content
Snippets Groups Projects
Commit 375435d1 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Added a script to plot the task graph

Former-commit-id: b426ea5f27d9e5f830af523f60cbce9ba569dc19
parent b8eac828
No related branches found
No related tags found
No related merge requests found
###############################################################################
# This file is part of SWIFT.
# Coypright (c) 2015 Pedro Gonnet (pedro.gonnet@durham.ac.uk),
# Bert Vandenbroucke (bert.vandenbroucke@ugent.be)
# Matthieu Schaller (matthieu.schaller@durham.ac.uk)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import matplotlib
matplotlib.use('Agg')
import pylab as pl
#import numpy as np
CPU_CLOCK = 2.7e9
params = {'axes.labelsize': 10,
'axes.titlesize': 10,
'text.fontsize': 12,
'legend.fontsize': 12,
'xtick.labelsize': 10,
'ytick.labelsize': 10,
'text.usetex': True,
'figure.figsize' : (12., 4.),
'figure.subplot.left' : 0.03,
'figure.subplot.right' : 0.995 ,
'figure.subplot.bottom' : 0.1 ,
'figure.subplot.top' : 0.99 ,
'figure.subplot.wspace' : 0. ,
'figure.subplot.hspace' : 0. ,
'lines.markersize' : 6,
'lines.linewidth' : 3.,
'text.latex.unicode': True
}
pl.rcParams.update(params)
pl.rc('font',**{'family':'sans-serif','sans-serif':['Times']})
types = {"0": "task_none", "1": "task_sort", "2": "task_self", "3": "task_pair",
"4": "task_pair", "5": "task_sub", "6": "task_ghost",
"7": "task_kick1", "8": "task_kick2", "9": "task_send",
"10": "task_recv", "11": "task_link", "12": "task_grav_pp",
"13": "task_grav_mm", "14": "task_grav_up", "15": "task_grav_down"}
subtypes = {"0": "subtask_none", "1": "subtask_density", "2": "subtask_force",
"3": "subtask_grav"}
colors = {"subtask_density": "g", "subtask_force": "b", "subtask_grav": "y", "subtask_none": "k"}
colors2 = {"task_sort": "r", "task_kick1": "m"}
data = pl.loadtxt("thread_info.dat")
nthread = int(max(data[:,0])) + 1
print "Number of threads:", nthread
tasks = {}
tasks[-1] = []
for i in range(nthread):
tasks[i] = []
start_t = min(data[:,4])
end_t = max(data[:,5])
data[:,4] -= start_t
data[:,5] -= start_t
num_lines = pl.size(data) / 8
for line in range(num_lines):
thread = int(data[line,0])
tasks[thread].append({})
tasks[thread][-1]["type"] = types[ str(int(data[line,1])) ]
tasks[thread][-1]["subtype"] = subtypes[str(int(data[line,2]))]
tasks[thread][-1]["tic"] = int(data[line,4]) / CPU_CLOCK * 1000
tasks[thread][-1]["toc"] = int(data[line,5]) / CPU_CLOCK * 1000
tasks[thread][-1]["t"] = (tasks[thread][-1]["toc"]+tasks[thread][-1]["tic"]) / 2
combtasks = {}
combtasks[-1] = []
for i in range(nthread):
combtasks[i] = []
for thread in range(nthread):
tasks[thread] = sorted(tasks[thread], key=lambda l: l["t"])
lasttype = ""
types = []
for task in tasks[thread]:
if task["type"] not in types:
types.append(task["type"])
if lasttype == "" or not lasttype == task["type"]:
combtasks[thread].append({})
combtasks[thread][-1]["type"] = task["type"]
combtasks[thread][-1]["subtype"] = task["subtype"]
combtasks[thread][-1]["tic"] = task["tic"]
combtasks[thread][-1]["toc"] = task["toc"]
if task["type"] == 'task_self' or task["type"] == 'task_pair' or task["type"] == 'task_sub':
combtasks[thread][-1]["color"] = colors[task["subtype"]]
else:
combtasks[thread][-1]["color"] = colors2[task["type"]]
lasttype = task["type"]
else:
combtasks[thread][-1]["toc"] = task["toc"]
for i in range(nthread):
for task in combtasks[i]:
pl.fill_between([task["tic"], task["toc"]], i+0.05, i+0.95, facecolor=task["color"])
pl.xlabel("Wall clock time [ms]")
pl.xlim(0, (end_t - start_t)*1.03 * 1000 / CPU_CLOCK)
pl.ylabel("Thread ID")
pl.yticks(pl.array(range(nthread)) + 0.5, pl.array(range(nthread)))
pl.savefig("task_graph.png")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment