Skip to content
Snippets Groups Projects
Commit b82a57ba authored by Peter W. Draper's avatar Peter W. Draper
Browse files

Use shading correctly when expanding threads

parent 145b4377
No related branches found
No related tags found
1 merge request!375Threadpool task plots
......@@ -214,13 +214,13 @@ ax.set_ylim(0, nthread)
tictocs = []
colours = []
j = 0
for task in tasks[nthread-1]:
for task in tasks[nthread - expand]:
tictocs.append((task["tic"], task["toc"] - task["tic"]))
colours.append(task["colour"])
ax.broken_barh(tictocs, [0,(nthread-1)], facecolors = colours, linewidth=0, alpha=0.15)
# And we don't plot the fake thread.
nthread = nthread - 1
nthread = nthread - expand
for i in range(nthread):
# Collect ranges and colours into arrays.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment