Skip to content
Snippets Groups Projects

Better drawing and ordering of cyclic schedules with latency offsets

Merged Oscar Gustafsson requested to merge cyclicdrawing into master
2 files
+ 6
4
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 4
2
@@ -1194,7 +1194,7 @@ class Schedule:
xy = np.stack((xvalues, y + y_pos))
p = ax.add_patch(Polygon(xy.T, fc=_LATENCY_COLOR))
p.set_clip_box(TransformedBbox(Bbox([[0, 0], [1, 1]]), ax.transAxes))
if any(xvalues > self.schedule_time):
if any(xvalues > self.schedule_time) and not isinstance(operation, Output):
xy = np.stack((xvalues - self.schedule_time, y + y_pos))
p = ax.add_patch(Polygon(xy.T, fc=_LATENCY_COLOR))
p.set_clip_box(TransformedBbox(Bbox([[0, 0], [1, 1]]), ax.transAxes))
@@ -1223,7 +1223,9 @@ class Schedule:
color=_EXECUTION_TIME_COLOR,
linewidth=3,
)
if any(xvalues > self.schedule_time):
if any(xvalues > self.schedule_time) and not isinstance(
operation, Output
):
ax.plot(
xvalues - self.schedule_time,
y + y_pos,
Loading