polished and fixed analysis

This commit is contained in:
Niklas Halle 2025-06-09 14:12:01 +00:00
parent a1fda3bd3e
commit 6259e856e5
2 changed files with 1240 additions and 1332 deletions

View file

@ -62,7 +62,7 @@ def e2e_breakdown_stack(*paths: List[E2EBreakdownItem], name: str = ""):
labels, duration_arrays = zip(*sorted(list(type_durations.items()), key=lambda pair: pair[1].var(), reverse=False))
ax.stackplot(range(len(paths)), *duration_arrays, labels=labels)
ax.set_ylabel("Latency contribution [ms]")
ax.set_xlabel("Trace Runtime [ms]")
ax.set_ylabel("Runtime Distribution [ms]")
ax.set_xlabel("Chain Run [#]")
ax.legend()
return fig

File diff suppressed because one or more lines are too long