aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-01-30 06:27:57 +0100
committerTibor Frank <tifrank@cisco.com>2018-01-30 05:29:27 +0000
commitd06a993c76886d2266eb8beb320a4d6c4cd240bd (patch)
treecaa2cbfb8f1c1090f6b1140a33d66a1f15e3b7d2
parentca4a41243a4e0c58ca63766090882ff94011ba2e (diff)
Report: Meltdown/Spectre disabled
Change-Id: Ia69fb79e9c182c71972ea4e530990d40f3dcb0e8 Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit f2981bad427e56e55686c971fbfb29bb7455a2a5)
-rw-r--r--docs/report/vpp_performance_tests/index.rst2
-rw-r--r--resources/tools/presentation/generator_tables.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/docs/report/vpp_performance_tests/index.rst b/docs/report/vpp_performance_tests/index.rst
index d26addcfb1..971b31d689 100644
--- a/docs/report/vpp_performance_tests/index.rst
+++ b/docs/report/vpp_performance_tests/index.rst
@@ -8,7 +8,5 @@ VPP Performance Tests
packet_throughput_graphs/index
packet_latency_graphs/index
throughput_speedup_multi_core/index
- impact_meltdown/index
- impact_spectreandmeltdown/index
test_environment
documentation/index
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py
index f621c56d99..65917bd4a8 100644
--- a/resources/tools/presentation/generator_tables.py
+++ b/resources/tools/presentation/generator_tables.py
@@ -194,10 +194,10 @@ def table_performance_improvements(table, input_data):
line_lst = list()
for item in data:
if isinstance(item["data"], str):
- line_lst.append(item["data"])
# Remove -?drdisc from the end
if item["data"].endswith("drdisc"):
item["data"] = item["data"][:-8]
+ line_lst.append(item["data"])
elif isinstance(item["data"], float):
line_lst.append("{:.1f}".format(item["data"]))
elif item["data"] is None: