diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-01-30 06:27:57 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-01-30 06:27:57 +0100 |
commit | f2981bad427e56e55686c971fbfb29bb7455a2a5 (patch) | |
tree | a7b85fcc32cfccb2a395f2757ff8c20be8acd7ef | |
parent | 37a3c919c9610db9e0b9b5ec5e63c7bf71950d78 (diff) |
Report: Meltdown/Spectre disabled
Change-Id: Ia69fb79e9c182c71972ea4e530990d40f3dcb0e8
Signed-off-by: Tibor Frank <tifrank@cisco.com>
-rw-r--r-- | docs/report/vpp_performance_tests/index.rst | 2 | ||||
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 2 |
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: |