aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-11-05 13:14:00 +0100
committerTibor Frank <tifrank@cisco.com>2018-11-05 12:17:06 +0000
commit4086d41cde94fb158cb2acaaf9cdfe33e5919045 (patch)
treea07e13ec1ffa170a199441b260e2d3aff5ff5d72
parent945db1d97515b51e2df650c374c99e3f65e46289 (diff)
Fix: Speedup Multi-Core throughput graphs
- remove markers from "perfect" line Change-Id: Iaeb93d6b728439262f1a1c7bcbace84d2e542bec Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit f5feb996b72ae37fb5f84e0138b03b645fded899) (cherry picked from commit 32821462e41d366f1267cda536aab5212ed1b8cc)
-rw-r--r--resources/tools/presentation/generator_plots.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py
index 890de208e3..a488bdf845 100644
--- a/resources/tools/presentation/generator_plots.py
+++ b/resources/tools/presentation/generator_plots.py
@@ -630,15 +630,11 @@ def plot_throughput_speedup_analysis(plot, input_data):
name="{0} perfect".format(name),
legendgroup=name,
showlegend=False,
- mode="lines+markers",
+ mode="lines",
line=dict(
color=COLORS[cidx],
width=2,
dash="dash"),
- marker=dict(
- symbol="circle",
- size=10
- ),
text=["perfect: {0:.2f}Mpps".format(y)
for y in val["ideal"]],
hoverinfo="text"